-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "lorco",
"version": "0.0.4",
"description": "lorco is a CLI tool to extract colors from a Sketch library file",
"main": "index.js",
"bin": {
"lorco": "bin/cli.js"
},
"scripts": {
"build": "node ./index.js",
"lint": "eslint index.js ./src ./helpers ./test ./bin",
"test": "nyc ava",
"test:coverage": "nyc report --reporter=lcov ava"
},
"keywords": [
"sketch",
"colors",
"extract"
],
"author": "Turbulent <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/turbulent/lorco.git"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"dependencies": {
"@sindresorhus/slugify": "^0.8.0",
"camelcase": "^5.0.0",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"node-sketch": "^0.12.2",
"rgb-hex": "^2.1.0"
},
"devDependencies": {
"ava": "^1.1.0",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"nyc": "^13.3.0"
}
}