-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.89 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
{
"name": "@numbersprotocol/nit",
"version": "1.6.1",
"description": "git for web3 digital asset",
"main": "lib/nit.js",
"repository": "https://github.com/numbersprotocol/nit",
"author": "Numbers Protocol",
"license": "GPL-3.0-or-later",
"dependencies": {
"@numbersprotocol/estuary-upload": "^1.1.0",
"@types/mime-types": "^2.1.1",
"axios": "1.2.0-alpha.1",
"colors": "^1.4.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.1",
"crypto-js": "^4.1.1",
"diff": "^5.1.0",
"ethers": "^5.5.4",
"form-data": "^4.0.0",
"got": "^11.8.2",
"launch-editor": "^2.3.0"
},
"scripts": {
"build": "yarn run clean && tsc",
"clean": "rm -rf lib/",
"dev-global-install": "yarn global add file:$PWD",
"dev-global-uninstall": "yarn global remove @numbersprotocol/nit",
"dev-install": "yarn run build && yarn add file:$PWD",
"dev-uninstall": "yarn remove @numbersprotocol/nit && yarn run clean",
"tests": "mocha -r ts-node/register tests/**/*.ts",
"test": "mocha -r ts-node/register"
},
"bin": "bin/nit.js",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/chai": "^4.3.1",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/crypto-js": "^4.1.1",
"@types/mocha": "^9.1.0",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"chai": "^4.3.6",
"eslint": "^8.33.0",
"mocha": "^9.2.2",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"files": [
"IntegrityRegister.json",
"/example",
"/lib",
"/bin"
],
"volta": {
"node": "18.16.0"
}
}