-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 893 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "data_seeder",
"version": "1.0.0",
"description": "Generates seed snapshot data for the Cloudy Time Machine project.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudytimemachine/data_seeder.git"
},
"author": "Eric Hole",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudytimemachine/data_seeder/issues"
},
"homepage": "https://github.com/cloudytimemachine/data_seeder#readme",
"dependencies": {
"async": "^2.0.1",
"cron": "^1.1.0",
"node-cron": "^1.1.2",
"request": "^2.75.0"
},
"devDependencies": {
"eslint": "^3.7.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"mocha": "^3.1.0"
}
}