-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
{
"name": "@steerprotocol/stop-loss-lp-strategy",
"version": "0.0.1",
"description": "AssemblyScript based strategy template for the Steer Protocol",
"main": "index.js",
"scripts": {
"test": "yarn jest",
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"start": "npx serve .",
"docs": "typedoc --tsconfig ./tsconfig.json",
"strategy": "yarn asbuild && yarn test",
"semantic-release": "semantic-release",
"commit": "cz",
"postinstall": "yarn asbuild"
},
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
},
"author": "Derek Barrera <derekbarrera@gmail.com>",
"license": "ISC",
"dependencies": {
"@babel/preset-typescript": "^7.14.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@steerprotocol/base-strategy": "^0.1.0",
"@steerprotocol/concentrated-liquidity-strategy": "0.2.8",
"@steerprotocol/strategy-utils": "^2.2.0",
"as-bignum": "^0.2.23",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "^4.6.0",
"json-as": "^0.5.21",
"serve": "^14.2.0",
"typescript": "^4.3.5",
"visitor-as": "^0.11.4"
},
"devDependencies": {
"@babel/preset-env": "^7.14.8",
"@steerprotocol/app-loader": "^0.1.6",
"@types/jest": "^27.0.1",
"@types/node": "^16.11.11",
"@types/node-fetch": "^2.6.2",
"assemblyscript": "^0.27.0",
"babel-core": "^6.26.3",
"babel-jest": "^27.0.6",
"cz-conventional-changelog": "3.3.0",
"jest": "^27.0.6",
"regenerator-runtime": "^0.13.9",
"semantic-release": "^17.4.5",
"typedoc": "^0.21.5"
},
"publishConfig": {
"access": "restricted"
}
}