-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"version": "0.0.1",
"name": "mobx-request-maker",
"scripts": {
"test": "mocha --opts tests/mocha.opts tests/**/*-test.{ts,tsx} && npm run lint && npm run build",
"tslint": "tslint",
"tslint:fix": "tslint --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'",
"build": "rm -rf lib && tsc -p . && rm -fr lib/tests && mv lib/src/** lib/ && rm -fr lib/src",
"prepublish": "npm run build"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"files": [
"lib/"
],
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.40",
"@types/node": "^9.3.0",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"mocha-clean": "^1.0.0",
"prettier": "^1.7.0",
"ts-node": "^4.0.0",
"tslint": "^5.16.0",
"typescript": "^2.5.3",
"typescript-eslint-parser": "^9.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
},
"dependencies": {
"axios": "^0.18.0",
"mobx": "^5.9.4",
"runtypes": "^3.2.0"
}
}