-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
44
45
46
47
48
49
50
51
52
{
"name": "jsonpack",
"version": "0.0.7",
"description": "Libary for serializing JSON objects to binary",
"author": {
"name": "Bryan Ingle",
"email": "[email protected]"
},
"main": "./index.js",
"scripts": {
"test": "gulp test",
"build": "browserify index.js -t [ babelify --presets [es2015] ] -o dist/jsonpack.js"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com/bryaningl3/jsonpack"
},
"keywords": [
"JSON",
"binary",
"serialize",
"deserialize"
],
"dependencies": {
"buffer": "^4.9.1"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"git-get-status": "^1.0.5",
"glob": "^6.0.1",
"gulp": "^4.0.2",
"gulp-bump": "~1.0.0",
"gulp-git": "~2.8.0",
"gulp-jasmine": "^2.2.1",
"gulp-jshint": "~2.1.0",
"jasmine": "^2.4.1",
"jshint": "2.9.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0"
},
"browserify": {
"transform": [
[
"babelify"
]
]
},
"license": "MIT"
}