-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.51 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
{
"name": "@novawallet/extension",
"description": "A Novawallet signer for the @polkadot/api",
"version": "0.1.0",
"author": "Ruslan Rezin <[email protected]>",
"license": "Apache-2",
"scripts": {
"clean": "rm -rf dist .cache",
"build": "rm -rf dist && parcel build src/index.ts --no-source-maps -o nova_min.js -d dist",
"lint": "prettier --write 'src/**/*.ts'",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register -r jsdom-global/register 'src/test/**/*.ts' --timeout 20000",
"jest-init": "jest --init"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@babel/runtime": "^7.11.2",
"@polkadot/extension-base": "^0.38.4",
"@polkadot/extension-dapp": "^0.38.4",
"@polkadot/extension-inject": "^0.38.4",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"babel-jest": "^27.4.5",
"chai": "^4.3.4",
"jest-cli": "^27.4.5",
"jsdom-global": "^3.0.2",
"mocha": "^9.1.3",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"jest": "^27.4.5",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "^1.19.1",
"typescript": "^4.5.4"
},
"staticFiles": {
"staticPath": [
"extension"
]
},
"jest": {
"transform": {
"^.+\\.(t|j)s?$": "ts-jest"
}
}
}