-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "lambda-function-potrace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "zip -r ~/Desktop/potrace.zip index.js lib/ node_modules/",
"lint": "eslint *.js src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haribote/lambda-function-potrace.git"
},
"author": "KIMURA Tetsuro",
"license": "MIT",
"bugs": {
"url": "https://github.com/haribote/lambda-function-potrace/issues"
},
"homepage": "https://github.com/haribote/lambda-function-potrace#readme",
"dependencies": {
"potrace": "^2.1.1",
"svgo": "^1.0.5"
},
"devDependencies": {
"@maboroshi/eslint-config": "^1.0.0",
"@maboroshi/prettier-config": "^1.0.0",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^7.1.2",
"prettier": "^1.13.0"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}