-
Notifications
You must be signed in to change notification settings - Fork 287
/
package.json
57 lines (57 loc) · 1.48 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": "@chrisdiana/cmsjs",
"version": "2.0.1",
"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 ./examples/",
"start": "npm run dev"
},
"main": "dist/cms.js",
"module": "dist/cms.es.js",
"browser": "dist/cms.min.js",
"unpkg": "dist/cms.js",
"jsdelivr": "dist/cms.js",
"files": [
"src",
"dist/*.js"
],
"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",
"acorn": ">=6.4.1",
"braces": ">=2.3.1",
"eslint-utils": ">=1.4.1",
"ini": ">=1.3.6",
"js-yaml": ">=3.13.1",
"lodash": ">=4.17.19",
"minimist": ">=1.2.3",
"mixin-deep": ">=1.3.2",
"npm-run-all": "^4.1.5",
"rollup": "^2.42.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"@rollup/plugin-commonjs": "^17.1.0",
"serialize-javascript": ">=3.1.0",
"serve": ">=10.1.2",
"set-value": ">=2.0.1"
}
}