forked from CodeYellowBV/mobx-spine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.96 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
76
77
78
79
{
"name": "mobx-spine",
"version": "0.28.2",
"license": "ISC",
"author": "Kees Kluskens <kees@webduck.nl>",
"description": "MobX with support for models, relations and an API.",
"module": "dist/mobx-spine.es.js",
"main": "dist/mobx-spine.cjs.js",
"repository": {
"type": "git",
"url": "git://github.com/CodeYellowBV/mobx-spine.git"
},
"scripts": {
"test": "jest",
"test-dev": "jest --watch",
"test-coverage": "jest --coverage",
"lint": "eslint src",
"preversion": "npm run -s lint && npm test && npm run -s build",
"version": "git add -A dist",
"build": "rm -f dist/** && BABEL_ENV=production node build.js",
"//precommit": "lint-staged",
"ci": "npm run -s lint && npm run -s test-coverage"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --tab-width 4 --write",
"git add"
]
},
"dependencies": {
"axios": "0.18.0"
},
"engines": {
"node": ">=4"
},
"files": [
"dist/"
],
"devDependencies": {
"axios-mock-adapter": "1.16.0",
"babel-core": "6.26.3",
"babel-jest": "22.4.4",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"codecov": "3.7.1",
"eslint": "5.16.0",
"eslint-config-codeyellow": "4.1.5",
"husky": "0.14.3",
"jest": "22.4.4",
"lint-staged": "7.1.1",
"lodash": "4.17.21",
"luxon": "1.24.1",
"mobx": "4.9.4",
"moment": "2.24.0",
"prettier": "1.17.0",
"rollup": "0.59.1",
"rollup-plugin-babel": "3.0.4"
},
"peerDependencies": {
"lodash": "^4.17.0",
"mobx": "^4.3.1 || ^5.0.0",
"moment": "^2.22.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"./src"
],
"modulePaths": [
"./src"
],
"testPathIgnorePatterns": [
"/fixtures/"
]
}
}