-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
{
"name": "@bitaccess/ts-common",
"version": "1.0.3",
"description": "Common typescript types and utils used by bitaccess",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bitaccess/ts-common.git"
},
"author": "Dylan Seago <[email protected]>",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"types": "dist/lib/index.d.ts",
"esnext": "dist/lib/index.js",
"files": [
"dist/",
"src/"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prebuild": "rimraf dist",
"build": "bin/build.sh",
"start": "rollup -c rollup.config.js -w",
"pretest": "npm run lint",
"test": "jest --runInBand --detectOpenHandles",
"preversion": "bin/preversion.sh",
"prepublish": "npm run build",
"postpublish": "git push && git push --tags",
"release": "npm publish"
},
"devDependencies": {
"@bitaccess/ts-config": "^1.3.1",
"@types/jest": "^28.1.3",
"@types/node": "^10.11.0",
"husky": "^3.0.9",
"jest": "^28.1.1",
"jest-config": "^28.1.1",
"lint-staged": "^13.0.3",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^2.75.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tslint": "^5.20.1",
"typescript": "^4.7.4"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"fp-ts": "^1.19.5",
"io-ts": "^1.10.4"
}
}