-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
{
"name": "jsoncms",
"version": "1.0.0",
"description": "simple cms for simple webpages",
"main": "index.js",
"scripts": {
"bower-install": "bower install",
"bower-update": "bower update -D",
"composer-install": "php composer.phar install",
"dist": "gulp dist",
"php-server": "cd dist && php -S localhost:3000",
"zip": "gulp zip",
"start": "gulp dist && gulp watch & npm run php-server",
"postinstall": "npm run bower-install & npm run composer-install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"bower": "^1.8.8",
"event-stream": "^3.3.4",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.1",
"gulp-copy": "^1.0.1",
"gulp-cssmin": "^0.2.0",
"gulp-html-replace": "^1.6.2",
"gulp-jshint": "^2.0.4",
"gulp-order": "^1.1.1",
"gulp-sass": "^2.3.2",
"gulp-uglifyjs": "^0.6.2",
"gulp-watch": "^4.3.11",
"gulp-zip": "^4.0.0",
"jshint": "^2.9.5",
"node-sass": "^4.13.1"
}
}