-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1015 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
43
44
45
46
47
48
{
"name": "uson",
"version": "0.3.5",
"description": "μson (uson) is a shorthand for JSON",
"main": "index.js",
"bin": {
"uson": "bin/cli.js"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/burningtree/uson.git"
},
"keywords": [
"json",
"serialization",
"yaml"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Jan Stránský <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/burningtree/uson/issues"
},
"homepage": "https://github.com/burningtree/uson",
"dependencies": {
"commander": "^3.0.0",
"object-assign": "^4.1.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.5.0",
"eslint": "^6.2.2",
"js-yaml": "^3.13.1",
"mocha": "^6.2.0",
"msgpack": "^1.0.2",
"pegjs": "^0.10.0",
"qs": "^6.8.0",
"uglify-js": "^3.6.0"
},
"spm": {
"main": "dist/uson.min.js"
}
}