-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
41 lines (41 loc) · 853 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
{
"name": "snappyjs",
"version": "0.7.0",
"description": "JavaScript implementation of Google's Snappy compression library",
"repository": "zhipeng-jia/snappyjs",
"main": "index.js",
"scripts": {
"test": "standard && tap test.js"
},
"author": "Zhipeng Jia",
"license": "MIT",
"devDependencies": {
"benchmark": "~2.1.4",
"bluebird": "~3.5.0",
"browserify": "~14.4.0",
"licensify": "~3.1.3",
"microtime": "~3.0.0",
"request-promise": "~4.2.1",
"snappy": "~6.3.5",
"standard": "^17.0.0",
"tap": "^15.0.9",
"uglifyify": "^5.0.2"
},
"keywords": [
"snappy"
],
"standard": {
"ignore": [
"/dist/snappyjs.js",
"/dist/snappyjs.min.js"
],
"globals": [
"FileReader",
"Benchmark",
"SnappyJS"
]
},
"tap": {
"check-coverage": false
}
}