-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "web-learn-note",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm run watch",
"push": "git add . && git commit -m '手写系列'",
"watch": "rollup -c -w",
"test:promise": "promises-aplus-tests ./src/手写系列/Promise/testPromise"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiaozitang/web-learn-note.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jiaozitang/web-learn-note/issues"
},
"homepage": "https://github.com/jiaozitang/web-learn-note#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"deepmerge": "^4.2.2",
"is-module": "^1.0.0",
"promises-aplus-tests": "^2.1.2",
"rollup": "^2.50.5",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"list-diff2": "^0.1.4",
"lodash": "^4.17.21",
"simple-virtual-dom": "^0.1.10"
}
}