-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 2.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "json.sortify",
"description": "A deterministic version of JSON.stringify that sorts object keys alphabetically.",
"version": "2.2.2",
"engines": {
"node": ">=4.0.0",
"npm": "~1.0.20"
},
"author": {
"name": "Thomas Rosenau",
"email": "[email protected]",
"url": "http://thomas-rosenau.de/"
},
"keywords": [
"JSON",
"deterministic",
"stringify",
"sort",
"hash"
],
"homepage": "https://github.com/ThomasR/JSON.sortify",
"repository": {
"type": "git",
"url": "https://github.com/ThomasR/JSON.sortify"
},
"bugs": {
"url": "https://github.com/ThomasR/JSON.sortify/issues"
},
"license": "Apache-2.0",
"main": "dist/JSON.sortify.js",
"devDependencies": {
"babel-core": "^6.7.2",
"babel-plugin-check-es2015-constants": "^6.7.2",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-minify-mangle-names": "^0.2.0",
"babel-plugin-minify-simplify": "^0.2.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.6.5",
"babel-plugin-transform-es2015-block-scoping": "^6.7.1",
"babel-plugin-transform-es2015-classes": "^6.6.5",
"babel-plugin-transform-es2015-computed-properties": "^6.6.5",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-duplicate-keys": "^6.6.4",
"babel-plugin-transform-es2015-for-of": "^6.6.0",
"babel-plugin-transform-es2015-function-name": "^6.5.0",
"babel-plugin-transform-es2015-literals": "^6.5.0",
"babel-plugin-transform-es2015-object-super": "^6.6.5",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-es2015-sticky-regex": "^6.5.0",
"babel-plugin-transform-es2015-template-literals": "^6.6.5",
"babel-plugin-transform-es2015-unicode-regex": "^6.5.0",
"babel-plugin-transform-merge-sibling-variables": "^6.8.6",
"babel-plugin-transform-regenerator": "^6.6.5",
"babel-plugin-transform-simplify-comparison-operators": "^6.8.5",
"expect": "^1.15.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-phantomjs": "^4.0.2"
},
"scripts": {
"prepublish": "node build/build.js && npm test",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha --check-leaks --bail --reporter spec test/",
"test:browser": "npm run test:browser:inject && npm run test:browser:amd",
"test:browser:inject": "mocha-phantomjs test/test.html",
"test:browser:amd": "mocha-phantomjs test/test-amd.html",
"test:cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/",
"test:travis": "npm run test:browser && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/"
}
}