This repository has been archived by the owner on Oct 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "bitcapital-core-sdk",
"version": "1.6.0",
"main": "./dist/index.js",
"author": "Luis Brito <luis@nxtep.io>",
"license": "UNLICENSED",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn run -s clean && tsc",
"clean": "rimraf ./dist/",
"test": "yarn run -s lint && jest --config jest.json",
"lint": "tslint --project tsconfig.json",
"docs": "./scripts/docs.sh",
"start": "$(cd docs/ && serve -p ${PORT:-3030})",
"precommit": "lint-staged"
},
"lint-staged": {
"!(dist/)*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"dependencies": {
"axios": "^0.17.1",
"bitcapital-common": "git+ssh://git@git.btcore.app:oss/bitcapital-common.git",
"localstorage-polyfill": "^1.0.1",
"qs": "^6.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.3.4",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.9",
"@types/uuid": "^3.4.4",
"axios-mock-adapter": "^1.16.0",
"cpf": "^2.0.1",
"faker": "^4.1.0",
"hat": "^0.0.3",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-junit": "^6.3.0",
"jest-silent-reporter": "^0.1.2",
"lint-staged": "^8.1.4",
"nodemon": "^1.18.10",
"nxtep-typedoc-theme": "nxtep-io/nxtep-typedoc-theme",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"serve": "^10.1.2",
"ts-jest": "^24.0.0",
"ts-lint": "^4.5.1",
"ts-node": "^8.0.2",
"tslint": "^5.13.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333",
"uuid": "^3.3.2"
}
}