-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "mobx-di",
"version": "1.1.0",
"description": "Simple DI used in mobx",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"CHANGELOG.md"
],
"scripts": {
"clean": "rm -rf coverage && rm -rf lib",
"codecov": "cat ./coverage/lcov.info | codecov",
"ci": "npm run clean && tsc -d && npm run test",
"test": "jest --coverage",
"build": "umi build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"author": "doxiaodong",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.9.0",
"@types/react": "^16.9.17",
"codecov": "^3.6.1",
"conventional-changelog-cli": "^2.0.31",
"jest": "^24.9.0",
"mobx": "^5.15.2",
"mobx-react": "^6.1.5",
"react": "^16.12.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5",
"umi": "^2.13.3"
},
"peerDependencies": {
"core-js": "^3.6.4"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|js)$",
"coverageDirectory": "coverage",
"moduleFileExtensions": [
"ts",
"js"
]
}
}