-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "candelabra",
"version": "0.0.1",
"description": "Shining a light on your website's accessibility.",
"main": "src/index.ts",
"bin": "lib/index.js",
"repository": "https://github.com/sanctuarycomputer/candelabra.git",
"author": "Joshie Fishbein <[email protected]>",
"license": "MIT",
"scripts": {
"install": "yarn build && node ./lib/installMessage.js",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build": "yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts\" --source-maps inline"
},
"dependencies": {
"axe-core": "^3.3.2",
"axe-puppeteer": "^1.0.0",
"colors": "^1.3.3",
"commander": "^6.1.0",
"core-js": "^3.2.1",
"lodash": "^4.17.15",
"puppeteer": "^1.19.0",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/lodash": "^4.14.137",
"@types/node": "^12.7.2",
"@types/puppeteer": "^1.19.1",
"husky": "^3.0.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"singleQuote": true
}
}