generated from digitalbazaar/context-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "@digitalbazaar/vc-render-method-context",
"version": "0.0.1",
"description": "VC Render Method JSON-LD context for JavaScript.",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": {
"import": "./lib/index.js",
"require": "./dist/main.cjs"
},
"files": [
"contexts/**/*.jsonld",
"dist/**/*.LICENSE.txt",
"dist/**/main.cjs",
"lib/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/vc-render-method-context"
},
"bugs": {
"url": "https://github.com/digitalbazaar/vc-render-method-context/issues"
},
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"homepage": "https://github.com/digitalbazaar/vc-render-method-context#readme",
"license": "SEE LICENSE IN LICENSE.md",
"keywords": [
"JSON-LD context",
"JSON-LD",
"Linked Data",
"VC Render Method",
"VC",
"Verifiable Credentials",
"context"
],
"devDependencies": {
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-digitalbazaar": "^5.2.0",
"eslint-plugin-unicorn": "^56.0.0",
"karma": "^6.4.4",
"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.1",
"mocha": "^10.8.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run clean && npm run serialize && webpack",
"clean": "rm -rf dist/* && rm -rf contexts/*.jsonld",
"lint": "eslint --ext .cjs,.js .",
"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.cjs",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks test/**/*.spec.js test/**/*.spec.cjs"
}
}