forked from digitalbazaar/rdf-canonize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.17 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
73
74
75
76
77
78
79
80
{
"name": "rdf-canonize",
"version": "0.2.5-0",
"description": "An implementation of the RDF Dataset Normalization Algorithm in JavaScript",
"homepage": "https://github.com/digitalbazaar/rdf-canonize",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"contributors": [
"Dave Longley <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/rdf-canonize"
},
"bugs": {
"url": "https://github.com/digitalbazaar/rdf-canonize/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"main": "index.js",
"files": [
"binding.gyp",
"dist/*.js",
"dist/*.js.map",
"dist/node6/**/*.js",
"index.js",
"lib/*.js",
"lib/native/*.cc",
"lib/native/*.h"
],
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.10.0",
"node-forge": "^0.7.1",
"semver": "^5.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-node6-es6": "^11.2.5",
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"commander": "^2.8.0",
"core-js": "^2.5.1",
"mocha": "^3.5.3",
"mocha-phantomjs": "^4.1.0",
"regenerator-runtime": "^0.11.0",
"webpack": "^3.7.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">=6"
},
"keywords": [
"JSON",
"Linked Data",
"JSON-LD",
"RDF",
"Semantic Web",
"jsonld"
],
"scripts": {
"prepublish": "npm run build",
"build": "npm run build-webpack && npm run build-node6",
"build-webpack": "webpack",
"build-node6": "babel --no-babelrc --out-dir dist/node6 --presets=node6-es6 lib/*.js",
"fetch-test-suite": "if [ ! -e test-suites/normalization ]; then git clone --depth 1 https://github.com/json-ld/normalization.git test-suites/normalization; fi",
"test": "mocha -R spec --check-leaks test/ conformance-test.js",
"benchmark": "node benchmark/benchmark.js"
},
"browser": {
"./index.js": "./lib/index.js",
"./lib/MessageDigest": "./lib/MessageDigest-browser.js",
"bindings": false
}
}