-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (42 loc) · 1.01 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
{
"name": "jsonfy",
"description": "Parse json like string to json object",
"version": "0.1.0",
"homepage": "https://github.com/qiu8310/jsonfy",
"bugs": "https://github.com/qiu8310/jsonfy/issues",
"license": "MIT",
"main": "src/jsonfy.js",
"author": {
"name": "Zhonglei Qiu",
"email": "zhongleiqiu@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/qiu8310/jsonfy"
},
"keywords":[
"jsonfy",
"json",
"simple",
"jsonfy"
],
"dependencies": {},
"devDependencies": {
"gulp": "^3.8.8",
"gulp-util": "^3.0.1",
"gulp-bump": "^0.1.11",
"gulp-jscs": "^1.1.2",
"gulp-jshint": "^1.8.4",
"gulp-mocha": "^1.1.0",
"gulp-istanbul": "^0.5.0",
"coveralls": "^2.11.1",
"should": "^4.0.4",
"jshint-stylish": "^0.4.0",
"gulp-load-plugins": "^0.6.0",
"gulp-plumber": "^0.6.5"
},
"scripts": {
"coveralls": "gulp test && cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "gulp test"
}
}