forked from microsoft/did-ccf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"private": true,
"scripts": {
"build": "del-cli -f dist/ && rollup --config && copyfiles app.json dist/",
"bundle": "node build_bundle.js dist/",
"propose": "node build_proposal.js utils",
"test-unit": "npm run build && mocha --recursive 'tests/unit/**/*.js'",
"lint": "tslint --fix --project . --config tslint.json",
"lint-pr": "tslint --project . --config tslint.json"
},
"type": "module",
"engines": {
"node": ">=14"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@microsoft/ccf-app": "^3.0.3",
"js-base64": "^3.7.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jsrsasign": "^8.0.7",
"@types/lodash-es": "^4.17.3",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"del-cli": "^3.0.1",
"http-server": "^0.13.0",
"rollup": "^2.41.0",
"tslib": "^2.0.1",
"typescript": "^3.9.9" ,
"copyfiles": "2.4.1",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-config-standard": "^8.0.1",
"tslint-microsoft-contrib": "^6.2.0",
"ts-node": "^10.9.1",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"esm": "^3.2.25"
}
}