-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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": "@internxt/inxt-js",
"version": "2.0.9",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc",
"build:js": "npm run build && browserify -s 'inxt' ./build/index.js -o dist/inxt.es6.js",
"test": "jest",
"test:watch": "jest --watch --detectOpenHandles",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"cli": "ts-node --files src/cli/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@internxt/eslint-config-internxt": "^1.0.3",
"@internxt/prettier-config": "^1.0.1",
"@types/archiver": "^5.1.1",
"@types/async": "^3.2.3",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.4",
"@types/commander": "^2.12.2",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.4",
"@types/node": "^17.0.0",
"@types/sinon": "^10.0.2",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"archiver": "^5.3.0",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commander": "^8.3.0",
"dotenv": "^10.0.0",
"eslint": "^8.0.1",
"express": "^4.17.1",
"jest": "^27.3.1",
"mocha": "^8.0.1",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.1",
"ts-jest": "^27.0.7",
"ts-mocha": "^7.0.0",
"ts-node": "10.7.0",
"typescript": "^3.9.6",
"uuid": "^8.3.2"
},
"dependencies": {
"@internxt/lib": "^1.1.6",
"@internxt/sdk": "^1.4.27",
"async": "^3.2.0",
"axios": "^0.23.0",
"bip39": "^3.0.2",
"undici": "^5.5.1",
"winston": "^3.3.3"
}
}