-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1003 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
{
"name": "jazzon",
"version": "1.0.0",
"description": "Add some jazz to your JSON files",
"main": "index.js",
"engines": {
"node": "^4.0.0"
},
"scripts": {
"test": "tape test/**/*.js",
"posttest": "npm run lint",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tornqvist/jazzon.git"
},
"keywords": [
"json",
"extend",
"filter",
"modify",
"transform",
"mock"
],
"author": "Carl Törnqvist <calle.tornqvist@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tornqvist/jazzon/issues"
},
"homepage": "https://github.com/tornqvist/jazzon#readme",
"devDependencies": {
"eslint": "^1.4.3",
"tape": "^4.2.0"
},
"dependencies": {
"co": "^4.6.0",
"is-generator": "^1.0.2",
"lodash.clonedeep": "^3.0.2",
"lodash.iserror": "^3.0.1",
"lodash.isfunction": "^3.0.6",
"lodash.isplainobject": "^3.2.0",
"lodash.isstring": "^3.0.1"
}
}