forked from digitalbazaar/context-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.94 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
{
"name": "context-template",
"version": "0.0.1",
"description": "Context template repository.",
"main": "js/index.js",
"module": "./dist/context.esm.js",
"files": [
"contexts",
"dist/context.js",
"js"
],
"repository": {
"type": "git",
"url": "https://github.com/interop-alliance/context-template"
},
"bugs": {
"url": "https://github.com/interop-alliance/context-template/issues"
},
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"homepage": "https://github.com/interop-alliance/context-template#readme",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-digitalbazaar": "^2.5.0",
"json-loader": "^0.5.7",
"karma": "^5.1.1",
"karma-babel-preprocessor": "^8.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^8.1.3",
"rollup": "^2.26.10",
"rollup-plugin-commonjs": "^10.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "npm run clean && npm run serialize && webpack && rollup -c",
"clean": "rm -rf dist/* && rm -rf contexts/*.jsonld",
"lint": "eslint js test",
"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"
}
}