-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
{
"name": "@digitalbazaar/FIXME-context",
"version": "0.0.1",
"description": "FIXME JSON-LD context for JavaScript.",
"main": "js/index.js",
"module": "./dist/context.esm.js",
"files": [
"contexts/**/*.jsonld",
"dist/**/*.LICENSE.txt",
"dist/**/context.esm.js",
"dist/**/context.js",
"js/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/FIXME-context"
},
"bugs": {
"url": "https://github.com/digitalbazaar/FIXME-context/issues"
},
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"homepage": "https://github.com/digitalbazaar/FIXME-context#readme",
"license": "BSD-3-Clause",
"keywords": [
"JSON-LD context",
"JSON-LD",
"Linked Data",
"context",
"FIXME"
],
"devDependencies": {
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-digitalbazaar": "^5.0.1",
"json-loader": "^0.5.7",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"rollup": "^3.25.3",
"rollup-plugin-commonjs": "^10.1.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run clean && npm run serialize && webpack && rollup -c",
"clean": "rm -rf dist/* && rm -rf contexts/*.jsonld",
"lint": "eslint .",
"prepare": "npm run build",
"serialize": "node bin/serialize.js",
"test": "npm run lint && npm run build && npm run test-node && npm run test-karma",
"test-karma": "karma start test/karma.conf.js",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks test/*.spec.js"
}
}