-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 994 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
{
"name": "lil-json",
"version": "1.0.0",
"description": "turn Large Json into lil json",
"main": "lib/index.js",
"scripts": {
"start": "babel-node src/index.js",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/jxm262/lil-json.git"
},
"author": "Justin Maat [email protected]",
"bugs": {
"url": "https://github.com/jxm262/lil-json/issues"
},
"homepage": "https://github.com/jxm262/lil-json#readme",
"keywords": [
"lil-json",
"shorten json",
"shrink json"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jxm262/lil-json/blob/master/LICENSE"
}
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"mocha": "^3.4.2"
},
"dependencies": {
"jsonfile": "^3.0.0",
"minimist": "^1.2.0"
}
}