-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 977 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
43
44
45
46
47
48
49
50
51
{
"name": "kibble",
"version": "1.2.1",
"description": "Useful JavaScript utilities.",
"author": "Alex Kern <[email protected]> (http://kern.io)",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pavlovml/kibble.git"
},
"dependencies": {
"json-stable-stringify": "^1.0.0",
"lodash": "^3.10.1"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-jest": "^6.0.1",
"babel-preset-es2015": "^6.1.18",
"jest-cli": "^0.8.0",
"standard": "^5.4.1"
},
"babel": {
"presets": [
"es2015"
]
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"src"
]
},
"standard": {
"ignore": [
"dist"
],
"global": [
"jest",
"describe",
"it",
"pit",
"expect",
"afterEach",
"beforeEach"
]
}
}