-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 801 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
{
"name": "j-zip",
"version": "1.0.6",
"description": "Compression tool using node",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"test": "jest",
"lint": "standard",
"dev": "chokidar '**/*.js' -c 'standard && jest'",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JakeRowsell89/compression.git"
},
"bin": {
"jzip": "index.js"
},
"author": "Jake Rowsell",
"license": "ISC",
"bugs": {
"url": "https://github.com/JakeRowsell89/compression/issues"
},
"homepage": "https://github.com/JakeRowsell89/compression#readme",
"devDependencies": {
"chokidar-cli": "^1.2.0",
"jest": "^19.0.2",
"standard": "^9.0.2"
},
"standard": {
"globals": [
"expect",
"it"
]
}
}