-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.86 KB
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
{
"name": "@digitalcredentials/jsonld-context-template",
"version": "1.0.0",
"description": "NPM package for a JSON-LD context.",
"main": "js/index.js",
"module": "./dist/context.esm.js",
"files": [
"contexts",
"dist/context.js",
"js"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalcredentials/jsonld-context-template"
},
"bugs": {
"url": "https://github.com/digitalcredentials/jsonld-context-template/issues"
},
"author": {
"name": "Digital Credentials Consortium",
"url": "https://dcconsortium.org/"
},
"homepage": "https://github.com/digitalcredentials/jsonld-context-template#readme",
"license": "MIT",
"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 && webpack && rollup -c",
"clean": "rm -rf dist/*",
"lint": "eslint js test",
"prepare": "npm run build",
"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"
}
}