-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "crusty-js",
"version": "0.1.0",
"description": "Frontend components for baking bread.",
"main": "index.js",
"scripts": {
"clean": "rm -r build/",
"develop": "parallel watch-compile server watch-bundle watch-css",
"compile": "./bin/build-js",
"watch-compile": "./bin/build-js -w",
"watch-bundle": "watchify build/index.js -o build/crusty.min.js",
"build-css": "./bin/build-css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"server": "http-server",
"postinstall": "typings install",
"pretest": "npm run compile",
"test": "mocha test/index.js",
"process-js": "browserify build/index.js | uglifyjs -o build/crusty.min.js",
"dist": "npm run build-css & npm run compile & npm run process-js"
},
"author": "William Dónal Adams",
"license": "MIT",
"devDependencies": {
"browserify": "13.1.0",
"http-server": "0.9.0",
"lodash": "4.11.1",
"mocha": "3.0.2",
"node-sass": "3.6.0",
"nodemon": "1.9.1",
"normalize.css": "4.1.1",
"npm-parallel": "2.0.1",
"should": "11.1.0",
"tsc": "^1.7",
"typescript": "1.8.10",
"typings": "1.3.3",
"uglifyjs": "2.4.10",
"watchify": "3.7.0"
},
"dependencies": {
"react": "15.3.1",
"react-dom": "15.3.1"
}
}