-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "digi",
"version": "1.0.9",
"description": "一个简单的js框架",
"main": "main.js",
"scripts": {
"start": "rollup --config rollup.config.js",
"dev": "rollup --watch --config rollup.config.dev.js",
"build": "rollup --config rollup.config.prod.js",
"doc": "jsdoc -c jsdoc/config.json -P package.json",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digi1874/digi.git"
},
"keywords": [
"js",
"javascript",
"framework",
"digi"
],
"author": "lin09",
"license": "MIT",
"bugs": {
"url": "https://github.com/digi1874/digi/issues"
},
"homepage": "https://github.com/digi1874/digi#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "7.0.0-beta.55",
"@rollup/plugin-json": "^4.0.2",
"babel-core": "^6.26.3",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"jsdoc": "^3.6.3",
"jsonfile": "^6.0.0",
"mutationobserver-shim": "^0.3.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"uglify-es": "^3.3.9"
}
}