-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "@ont-dev/ontology-dapi",
"version": "0.7.3",
"description": "",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"scripts": {
"test": "jest",
"lint": "tslint --project ./",
"build:dev": "cross-env NODE_ENV=development webpack --mode development --display-error-details --progress --color",
"build:prod": "cross-env NODE_ENV=production webpack --mode production --progress --color",
"prepublish": "npm run lint && npm run build:prod"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testRegex": "/test/.*\\.(ts|tsx|js)$"
},
"author": "Matus Zamborsky <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/ontio/ontology-dapi"
},
"bugs": {
"url": "https://github.com/ontio/ontology-dapi/issues"
},
"homepage": "https://github.com/ontio/ontology-dapi",
"devDependencies": {
"@types/bs58": "^3.0.30",
"@types/crypto-js": "^3.1.43",
"@types/node": "^11.15.20",
"@types/promise-timeout": "^1.3.0",
"@types/uuid": "^3.4.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"jest": "^23.4.2",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-no-circular-imports": "^0.4.0",
"typescript": "^3.9.7",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@ont-community/window-post-message-proxy": "^0.2.14",
"@types/webextension-polyfill": "^0.10.7",
"base-x": "^3.0.5",
"crypto-js": "^3.1.9-1",
"promise-timeout": "^1.3.0",
"typedarray-to-buffer": "^3.1.5",
"uuid": "^3.3.2",
"webextension-polyfill": "^0.10.0",
"webextension-polyfill-ts": "^0.8.7"
}
}