forked from chrisdiana/cms.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 984 Bytes
/
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
{
"name": "CMS.js",
"version": "2.0.0",
"description": "The JavaScript Site Generator.",
"keywords": "client-side, javascript, site-generator",
"homepage": "https://github.com/chrisdiana/cms.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel serve watch",
"serve": "serve ./",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git://github.com/chrisdiana/cms.js.git"
},
"author": {
"name": "Chris Diana"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisdiana/cms.js/issues"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"npm-run-all": "^4.1.5",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"serve": "^10.1.1"
}
}