-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "terrarium",
"version": "0.0.3",
"description": "My collection of carnivorous plants. Plus sensors and cool things.",
"author": "Tom Spalding (https://github.com/nebulousdog)",
"contributors": [
{
"name": "Tom Spalding",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/nebulousdog/terrarium.git"
},
"scripts": {
"build": "./node_modules/.bin/rollup -c rollup.config.js",
"prebuild": "./node_modules/.bin/eslint src",
"prepublish": "./node_modules/.bin/jsdoc src -d docs",
"pretest": "yarn run build",
"scss": "./node_modules/.bin/node-sass stylesheets/main.scss -o . --watch",
"start": "node server.js",
"test": "./node_modules/.bin/mocha",
"watch": "./node_modules/.bin/rollup -c -w"
},
"dependencies": {
"body-parser": "^1.17.2",
"http": "^0.0.0",
"knockout": "^3.4.2",
"validate.js": "^0.11.1"
},
"keywords": [
"carnivorous",
"plants",
"terrarium",
"growth",
"monitoring",
"dual storage"
],
"engines": {
"node": ">=9.8.0"
},
"license": "https://github.com/nebulousdog/terrarium/blob/master/readme.md#license",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.0",
"faker": "^4.1.0",
"jsdoc": "^3.5.5",
"json-schema-faker": "^0.5.0-rc9",
"mocha": "^3.5.3",
"node-sass": "^4.7.2",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0"
}
}