-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.24 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
{
"name": "invar",
"version": "1.0.4",
"description": "Expressive runtime invariants for JavaScript",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavlovml/invar.git"
},
"bugs": {
"url": "https://github.com/pavlovml/invar/issues"
},
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.3.0"
},
"dependencies": {
"json-stable-stringify": ">=1.0.1",
"lodash": ">=3.10.1"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^4.1.5",
"babel-jest": "^6.0.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.3.13",
"eslint-plugin-babel": "^2.1.1",
"jest-cli": "^0.8.0",
"standard": "^5.4.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"src"
]
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist"
],
"global": [
"jest",
"describe",
"it",
"pit",
"expect",
"afterEach",
"beforeEach"
]
}
}