-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "yalc",
"version": "1.0.0-pre.53",
"description": "Work with npm/yarn packages locally like a boss.",
"homepage": "https://github.com/whitecolor/yalc",
"repository": {
"type": "git",
"url": "https://github.com/whitecolor/yalc.git"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"bin": {
"yalc": "src/yalc.js"
},
"main": "src/index.js",
"scripts": {
"build": "tsc",
"clean": "ts-clean-built --old && trash **/*.log",
"prepublishOnly": "yarn clean && tsc && yarn test",
"test": "tsc && mocha test && yarn lint",
"test-dev": "ts-node-dev -T --respawn node_modules/mocha/bin/mocha test/index.ts",
"ci": "tsc && yarn test",
"lint": "tslint -p ."
},
"husky": {
"hooks": {
"pre-commit": "yalc check && pretty-quick --staged"
}
},
"dependencies": {
"chalk": "^4.1.0",
"detect-indent": "^6.0.0",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"ignore": "^5.0.4",
"ini": "^2.0.0",
"npm-packlist": "^5.0.2",
"yargs": "^16.1.1"
},
"devDependencies": {
"@types/fs-extra": "^7.0.0",
"@types/glob": "^5.0.30",
"@types/mocha": "^8.0.0",
"@types/node": "^12.0.7",
"@types/npm-packlist": "^1.1.0",
"@types/yargs": "^6.6.0",
"clean-ts-built": "^1.0.0",
"husky": "^1.3.1",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^1.8.0",
"trash-cli": "^1.4.0",
"ts-clean-built": "^1.2.1",
"ts-node-dev": "^1.0.0-pre.55",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.9.7",
"typescript-tslint-plugin": "^0.1.2"
},
"license": "MIT"
}