forked from action-land/action-land
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"private": true,
"scripts": {
"test": "mocha --require=ts-node/register test/**/*.ts",
"prettier": "git ls-files | grep '.ts$' | xargs prettier --write --config=.prettierrc",
"lint": "git ls-files | grep '.ts$' | xargs yarn tslint",
"lint:fix": "git ls-files | grep '.ts$' | xargs yarn tslint --fix",
"preversion": "tsc -d",
"lerna-publish": "lerna publish --conventional-commits"
},
"author": "Tushar Mathur <[email protected]>",
"license": "ISC",
"keywords": [
"action"
],
"repository": {
"type": "git",
"url": "https://github.com/action-land/action-land.git"
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.2",
"@types/ramda": "^0.25.35",
"benchmark": "^2.1.4",
"cz-lerna-changelog": "^1.2.1",
"lerna": "^2.11.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"ramda": "^0.25.0",
"ts-curry": "^1.0.4",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"workspaces": [
"modules/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}