-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1014 Bytes
/
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": "nano-mobx",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/thomas-jeepe/nano-mobx.git",
"author": "penguinsoccer <penguinsoccer@outlook.com>",
"license": "MIT",
"dependencies": {
"rxjs": "^6.0.0-alpha.0",
"typescript": "^2.3.4"
},
"devDependencies": {
"@types/benchmark": "^1.0.30",
"@types/jest": "^19.2.4",
"benchmark": "^2.1.4",
"jest": "^20.0.4",
"mobx": "^3.1.15",
"prettier": "^1.4.4",
"ts-jest": "^20.0.6",
"ts-node": "^3.0.6",
"tslib": "^1.7.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)(unit|int).ts?(x)"
]
},
"scripts": {
"bench": "ts-node bench/perf.ts",
"test": "jest src",
"format": "prettier --parser typescript --no-semi --single-quote --write \"src/**/*.ts\""
}
}