-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.97 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@tokenscript/cli",
"version": "1.2.3",
"description": "A tool for managing tokenscript projects",
"author": "Michael Wallace @micwallace",
"repository": {
"type": "git",
"url": "https://github.com/SmartTokenLabs/tokenscript-cli.git"
},
"bin": {
"tokenscript": "./bin/run"
},
"license": "MIT",
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^1.26.2",
"@oclif/plugin-help": "^5.2.20",
"@oclif/plugin-plugins": "^2.4.7",
"@peculiar/asn1-ecc": "^2.3.8",
"@peculiar/asn1-pkcs8": "^2.3.8",
"@peculiar/asn1-schema": "^2.3.8",
"@peculiar/asn1-x509": "^2.3.8",
"@peculiar/webcrypto": "^1.5.0",
"@peculiar/x509": "^1.11.0",
"@tokenscript/libxmljs2-xsd": "^0.32.0",
"@tokenscript/xmldsigjs": "^2.5.2",
"@xmldom/xmldom": "^0.9.0-beta.11",
"axios": "^1.7.2",
"chokidar": "^3.6.0",
"cors": "^2.8.5",
"elliptic": "^6.5.5",
"ethers": "^5.7.2",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.6",
"jsdom": "^20.0.3",
"key-encoder": "^2.0.3",
"open": "^8.4.2",
"replace-in-file": "^6.3.5",
"xml-formatter": "^3.6.2"
},
"devDependencies": {
"@oclif/test": "^2.5.6",
"@types/chai": "^4.3.16",
"@types/cors": "^2.8.17",
"@types/elliptic": "^6.4.18",
"@types/express": "^4.17.21",
"@types/express-ws": "^3.0.4",
"@types/filesystem": "^0.0.32",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^9.0.7",
"@types/jsdom": "^20.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.100",
"@types/w3c-xmlserializer": "^2.0.4",
"chai": "^4.4.1",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"globby": "^11.1.0",
"mocha": "10.1.0",
"node-gyp": "^9.4.1",
"oclif": "^3.17.2",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "tokenscript",
"dirname": "tokenscript",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b && npm run copy-files",
"copy-files": "shx cp -R static/* dist/ && cp -R src/schema dist/",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/TokenScript/tokenscript-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}