-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (50 loc) · 1000 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
{
"name": "node-jq-ext",
"version": "0.0.6",
"description": "jq Native extention",
"scripts": {
"test": "gulp test",
"build": "gulp build"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"babel-plugin-espower"
]
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/takeshinoda/node-jq-ext.git"
},
"keywords": [
"jq"
],
"author": "Takeshi SHINODA",
"license": "MIT",
"bugs": {
"url": "https://github.com/takeshinoda/node-jq-ext/issues"
},
"dependencies": {
"babel-polyfill": "~6",
"bindings": "~1",
"nan": "~2"
},
"devDependencies": {
"babel-core": "~6",
"babel-plugin-espower": "~2",
"babel-polyfill": "~6",
"babel-preset-es2015": "~6",
"babel-register": "~6",
"gulp": "~3",
"gulp-babel": "~6",
"gulp-mocha": "~3",
"gulp-util": "~3",
"mocha": "~3",
"power-assert": "~1",
"run-sequence": "~1",
"sinon": "~1"
}
}