This repository has been archived by the owner on Feb 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.82 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "rocketact-dev-utils",
"version": "1.0.5",
"description": "shared utils for rocketact and it's plugins",
"main": "./dist/index.js",
"keywords": [
"rocketact"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"compile": "rm -rf dist && tsc",
"prepublishOnly": "npm run compile"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jdf2e/rocketact-dev-utils.git"
},
"author": "loveky",
"contributors": [
{
"name": "loveky",
"email": "[email protected]"
},
{
"name": "beanlee",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jdf2e/rocketact-dev-utils/issues"
},
"homepage": "https://github.com/jdf2e/rocketact-dev-utils#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/execa": "^0.9.0",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.2",
"@types/ramda": "^0.25.41",
"commitizen": "3.0.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"prettier": "^1.14.3",
"ts-jest": "^23.10.4",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.1.6"
},
"dependencies": {
"chalk": "^2.4.1",
"execa": "^1.0.0",
"get-stream": "^4.1.0",
"ramda": "^0.25.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}