-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
75 lines (75 loc) · 2.11 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "mota",
"version": "8.2.4",
"description": "An extremely lightweight and responsive state management library",
"module": "./dist/mota-es.js",
"main": "./dist/mota-cjs.js",
"types": "./types/index.d.ts",
"scripts": {
"config": "dn config registry https://registry.npmjs.com/",
"test": "npm run config && dn test && dn build -e prod",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Houfeng/mota.git"
},
"author": {
"name": "Houfeng",
"email": "[email protected]",
"url": "http://houfeng.net"
},
"license": "MIT",
"dependencies": {
"ober": "8.3.2",
"tslib": "*"
},
"peerDependencies": {
"react": "*"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@types/mocha": "9.1.1",
"@types/react": "*",
"@types/react-dom": "*",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"coveralls": "^3.0.0",
"dawn": "^1.8.0",
"dn-middleware-browser-sync": "^0.1.0",
"dn-middleware-clean": "^1.0.2",
"dn-middleware-copy": "^0.2.7",
"dn-middleware-file-header": "^1.0.3",
"dn-middleware-server": "^1.0.15",
"dn-middleware-shell": "^1.1.0",
"dn-middleware-submitter": "^1.0.1",
"dn-middleware-typescript": "^2.0.8",
"dn-middleware-unit": "0.3.1",
"dn-middleware-version": "^1.0.4",
"eslint": "8.13.0",
"eslint-plugin-prettier": "4.0.0",
"nyc": "^11.4.1",
"prettier": "2.6.2",
"react": "*",
"react-dom": "*",
"rollup": "^2.2.0",
"rollup-plugin-alias": "2.2.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-inject-process-env": "1.3.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "0.31.2",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "4.6.3"
}
}