-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
48 lines (48 loc) · 1.04 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": "easyeda2kicad",
"version": "1.9.5",
"bin": "dist/main.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Uri Shaked <[email protected]>",
"repository": "https://github.com/wokwi/easyeda2kicad",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "ts-node src/main.ts",
"lint": "tslint --project tsconfig.json",
"test": "jest"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^12.12.7",
"husky": "^3.0.9",
"jest": "^27.3.1",
"lint-staged": "^13.2.1",
"prettier": "^2.0.4",
"ts-jest": "^27.0.7",
"ts-node": "^8.5.0",
"tslint": "^5.20.1",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"tslint --project tsconfig.spec.json -c tslint.commit.json --fix",
"prettier --write",
"git add"
]
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
}
}