-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.69 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
{
"name": "@marvinh/mobx-form-reactions",
"version": "5.0.0",
"description": "MobX form state classes",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"author": "Marvin Hagemeister <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:marvinhagemeister/mobx-form-reactions.git"
},
"scripts": {
"clean": "rimraf dist/",
"lint": "tslint 'src/**/*.ts' 'examples/**/*.ts'",
"watch": "tsc -w",
"build": "npm run clean && tsc && tsc -p tsconfig.es.json",
"test": "mocha -r ts-node/register --watch-extensions=ts 'src/**/__tests__/*.spec.ts' 'examples/**/__tests__/*.spec.ts'",
"test-watch": "npm t -- -w -R min",
"coverage": "nyc npm t",
"prepublishOnly": "npm run lint && npm t && npm run build"
},
"peerDependencies": {
"mobx": "^4.1.1"
},
"dependencies": {
"@marvinh/cancel-token": "^1.0.0"
},
"devDependencies": {
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.1",
"@types/sinon": "^5.0.1",
"mobx": "^4.1.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rimraf": "^2.5.4",
"sinon": "^6.0.1",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-config-sevenval": "^1.0.1",
"typescript": "^2.9.2"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"typings",
"node_modules/",
"**/__tests__/**",
"__tests__/**",
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text",
"text-summary",
"lcovonly"
],
"all": true
}
}