forked from iotaledger/identity.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "identity_ts",
"version": "0.2.3",
"description": "Digital Identity implementation",
"main": "./out/src/index.js",
"typings": "typings/src",
"scripts": {
"build": "npm run requirements-check && copyfiles -V \"./src/VC/Schemas/*.json\" \"./out\" && copyfiles -V \"./src/IOTA/*.json\" \"./out\" && tsc",
"lint": "tslint --project .",
"test": "npm run requirements-check && mocha -r ts-node/register test/*.test.ts",
"testVC": "npm run requirements-check && mocha -r ts-node/register test/VC.test.ts",
"doc": "jsdoc2md --template README_tpl.hbs --files ./src/**/*.ts --configure ./jsdoc2md.json > ./README.md",
"requirements-check": "node check_node_version.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/identity.ts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/iotaledger/identity.ts/issues"
},
"homepage": "https://github.com/iotaledger/identity.ts#readme",
"dependencies": {
"@iota/converter": "^1.0.0-beta.23",
"@iota/core": "^1.0.0-beta.29",
"@iota/mam.js": "github:iotaledger/mam.js",
"crypto-js": "^4.0.0",
"eciesjs": "^0.3.5",
"secp256k1": "^4.0.0",
"tv4": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.0",
"@types/secp256k1": "4.0.1",
"@types/tv4": "^1.2.29",
"chai": "^4.2.0",
"copyfiles": "^2.2.0",
"dmd-clear": "^0.1.2",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"semver": "^7.3.2",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"engineStrict": true,
"engines": {
"node": ">=10.0"
},
"resolutions": {
"minimist": "^1.2.5"
}
}