-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.53 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": "@js-items/ky",
"version": "0.0.0-development",
"description": "Concrete implementation of js-items for ky",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"duplication": "jscpd ./src",
"build": "npm run clean && tsc",
"lint": "tslint --project tsconfig.json --config tslint.json './src/**/*.ts'",
"test": "jest --coverage && codecov",
"test:watch": "jest --watch --coverage",
"semantic-release": "semantic-release-public-circleci-lib"
},
"pre-commit": [
"build",
"test",
"lint",
"duplication"
],
"repository": {
"type": "git",
"url": "git+https://github.com/js-items/ky.git"
},
"author": "Mariusz Rajczakowski <[email protected]> (http://mariuszrajczakowski.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/js-items/ky/issues"
},
"homepage": "https://github.com/js-items/ky#readme",
"devDependencies": {
"@js-items/foundation": "1.0.28",
"@kube-js/semantic-release": "1.0.7",
"@kube-js/tscommons": "1.0.5",
"@types/jest": "24.0.18",
"@types/ramda": "0.26.26",
"jest": "24.9.0",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.6.3"
},
"dependencies": {
"codecov": "3.6.1",
"http-status-codes": "^1.3.2",
"jscpd": "2.0.16",
"jscpd-badge-reporter": "1.1.3",
"ky": "0.15.0",
"make-error": "1.3.5",
"pre-commit": "1.2.2",
"ramda": "0.26.1"
},
"publishConfig": {
"access": "public"
}
}