forked from poetapp/frost-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
{
"name": "@po.et/frost-client",
"version": "0.1.8",
"description": "Frost Client helps you to easily integrate your applications with Po.et's Frost API.",
"main": "dist/Frost.js",
"types": "dist/Frost.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "tslint -p ./tsconfig.json --fix",
"lint:check": "tslint-config-prettier-check ./tslint.json",
"test": "ts-node --files tests/index.ts",
"test:unit": "ts-node --files tests/unit/index.ts",
"test:integration": "ts-node --files tests/integration/index.ts",
"coverage": "nyc --report-dir ./.coverage npm run test",
"coverage:unit": "nyc --report-dir ./.coverage npm run test:unit",
"coverage:integration": "nyc --report-dir ./.coverage npm run test:integration",
"precommit": "lint-staged",
"compile": "tsc",
"prepublish": "npm run compile",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"lint-staged": {
"*.ts": [
"tslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/poetapp/frost-client.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poetapp/frost-client/issues"
},
"dependencies": {
"es6-promise": "4.2.5",
"isomorphic-fetch": "2.2.1",
"serialize-javascript": "1.5.0"
},
"devDependencies": {
"@po.et/tslint-rules": "2.0.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/nock": "9.3.0",
"@types/serialize-javascript": "1.5.0",
"@types/sinon": "5.0.5",
"husky": "1.1.2",
"lint-staged": "7.3.0",
"nock": "10.0.1",
"nyc": "github:poetapp/nyc#fbc2ed1",
"prettier": "1.14.3",
"riteway": "3.0.1",
"semantic-release": "15.10.6",
"sinon": "7.1.0",
"travis-deploy-once": "5.0.9",
"ts-node": "7.0.1",
"tslint-config-prettier": "1.15.0",
"tslint-plugin-prettier": "2.0.0",
"typescript": "3.1.4"
},
"publishConfig": {
"access": "public"
}
}