This repository was archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
126 lines (126 loc) · 3.06 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "setprotocol.js",
"version": "1.2.9-rc1",
"description": "A javascript library for interacting with the Set protocol",
"keywords": [
"setProtocol.js",
"setProtocol",
"ethereum",
"tokens",
"basket",
"ERC20"
],
"main": "dist/src/index.js",
"typings": "dist/types/src/index.d.ts",
"bin": {},
"scripts": {
"prod": "yarn run build",
"chain": "bash scripts/init_chain_internal.sh",
"build": "yarn run build-ts && yarn run tslint",
"build-ts": "tsc",
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"precommit": "lint-staged",
"docs": "bash scripts/docs/generate_docs.sh",
"prepublishOnly": "yarn build"
},
"config": {},
"repository": {
"type": "git",
"url": "https://github.com/SetProtocol/setProtocol.js"
},
"license": "Apache-2.0",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"ganache-cli": "6.4.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^7.2.1",
"ts-jest": "^23.10.4",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.16",
"typescript": "^3.1.2"
},
"dependencies": {
"@0xproject/types": "^1.0.1-rc.5",
"@0xproject/typescript-typings": "^1.0.4",
"@0xproject/utils": "^2.0.2",
"@types/jest": "^22.0.1",
"@types/lodash": "^4.14.108",
"@types/lodash.compact": "^3.0.3",
"@types/node": "10.0.3",
"@types/web3": "1.0.20",
"abi-decoder": "^1.1.0",
"bignumber.js": "^5.0.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ethereum-types": "^1.0.4",
"ethereumjs-util": "^5.2.0",
"jsonschema": "^1.2.4",
"lodash": "^4.17.4",
"lodash.compact": "^3.0.1",
"moment": "^2.22.2",
"set-protocol-contracts": "1.4.17-beta",
"set-protocol-oracles": "^1.0.16",
"set-protocol-strategies": "^1.1.39",
"set-protocol-viewers": "^1.0.13",
"set-protocol-utils": "^1.1.3",
"timekeeper": "^2.1.2",
"tiny-promisify": "^1.0.0",
"truffle": "^5.1.12",
"@truffle/contract": "^4.0.2",
"truffle-hdwallet-provider": "^1.0.0-web3one.0",
"web3": "1.0.0-beta.36",
"web3-utils": "1.0.0-beta.36"
},
"files": [
"src",
"dist",
"scripts"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"yarn tslint --fix",
"git add"
],
"test/**/*.ts": [
"yarn tslint --fix",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/_versions/"
],
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"^@src/(.*)": "<rootDir>/src/$1",
"^@test/(.*)": "<rootDir>/test/$1"
}
}
}