-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.86 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
{
"name": "@ensofinance/weiroll.js",
"version": "0.4.1",
"description": "The weiroll planner in JS",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"start": "tsdx watch",
"build": "tsdx build",
"tsdx-test": "tsdx test",
"lint": "tsdx lint",
"prepare": "husky install && tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"format": "prettier --write \"./src/*.{js,ts}\" \"tests/*.{js,ts}\"",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weiroll/weiroll.js.git"
},
"author": "@weiroll",
"module": "dist/weiroll.js.esm.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/weiroll/weiroll.js/issues"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"size-limit": [
{
"path": "dist/weiroll.js.cjs.production.min.js",
"limit": "35 KB"
},
{
"path": "dist/weiroll.js.esm.js",
"limit": "35 KB"
}
],
"homepage": "https://github.com/weiroll/weiroll.js#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^4.12.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"chai": "^4.3.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"mocha": "^9.0.0",
"prettier": "^2.3.1",
"size-limit": "^4.12.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typedoc": "^0.21.2",
"typescript": "^4.3.3"
},
"dependencies": {
"ethers": "^5.3.1"
}
}