-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "@radar/radar-anthology",
"version": "0.7.5",
"description": "Radar's internal configuration using Anthology.scss",
"repository": {
"type": "git",
"url": "git+https://github.com/RadarRelay/radar-anthology.git"
},
"author": "Ian Smith <[email protected]>",
"bugs": {
"url": "https://github.com/RadarRelay/radar-anthology/issues"
},
"homepage": "https://github.com/RadarRelay/radar-anthology#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc",
"lint": "tslint --fix ./src/ts/**/*.ts",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"anthology.scss": "0.7.4"
},
"devDependencies": {
"@radar/tslint-config": "^5.0.0",
"anthology.scss": "0.7.4",
"husky": "^1.1.4",
"lint-staged": "^8.0.4",
"node-sass": "^4.11.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
]
}
}