-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "@po.et/frost-client",
"version": "2.4.5",
"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",
"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",
"precommit": "lint-staged",
"compile": "tsc",
"prepublishOnly": "npm run compile",
"semantic-release": "semantic-release"
},
"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.2.0",
"@semantic-release/git": "7.0.8",
"@types/isomorphic-fetch": "0.0.34",
"@types/nock": "9.3.0",
"@types/serialize-javascript": "1.5.0",
"@types/sinon": "7.0.0",
"husky": "1.2.1",
"lint-staged": "7.3.0",
"nock": "10.0.4",
"riteway": "4.0.1",
"semantic-release": "15.13.3",
"sinon": "7.2.2",
"ts-node": "7.0.1",
"typescript": "3.2.2"
},
"publishConfig": {
"access": "public"
}
}