-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 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
{
"name": "silverstripe-neolayout",
"private": true,
"version": "0.0.0",
"description": "Client application silverstripe-neolayout.",
"main": "javascript/app.js",
"repository": {
"type": "git",
"url": "[email protected]:mrmorphic/silverstripe-neolayout.git"
},
"keywords": [
"SilverStripe",
"Layout",
"Block editing"
],
"contributors": [
{
"name": "Mark Stephens",
"email": "[email protected]"
},
{
"name": "David Craig",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/mrmorphic/silverstripe-neolayout/issues"
},
"homepage": "https://github.com/mrmorphic/silverstripe-neolayout",
"devDependencies": {
"browserify": "^7.0.0",
"es6-promise": "^2.3.0",
"flux": "^2.0.3",
"jest-cli": "^0.4.0",
"jsdoc-to-markdown": "^0.5.9",
"node-uuid": "^1.4.1",
"object-assign": "^3.0.0",
"react": "^0.12.1",
"react-tools": "^0.13.3",
"reactify": "^1.1.1",
"stylus": "^0.50.0",
"uglifyjs": "^2.4.10"
},
"scripts": {
"build:css:dev": "stylus ./css/src/main.styl --out ./css/dist/main.css",
"build:css:prod": "stylus ./css/src/main.styl --compress --out ./css/dist/main.css",
"build:js:dev": "browserify -t reactify ./javascript/src/app.js > ./javascript/dist/app.js",
"build:js:prod": "browserify -t reactify ./javascript/src/app.js | uglifyjs --mangle --output javascript/dist/app.js",
"build:all:dev": "npm run build:css:dev && npm run build:js:dev",
"build:all:prod": "npm run build:css:prod && npm run build:js:prod",
"docs": "jsx --no-cache-dir ./javascript/src ./tmp && jsdoc2md ./tmp/**/*.js > docs/client_app_reference.md && rm -rf ./tmp",
"test": "jest"
},
"jest": {
"rootDir": "./javascript/src"
}
}