-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
53
{
"name": "openfpga-validator",
"private": false,
"version": "0.7.0",
"description": "Script which validates OpenFPGA core zips",
"scripts": {
"test": "npm run create-zips && jest",
"build": "npx tsc",
"run": "npx tsc && npx .",
"prepublish": "npm run build",
"create-zips": "cd test_zips && for folder in *; do if [ -d \"$folder\" ]; then (cd $folder; zip -r \"../${folder}.zip\" *); fi done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neil-morrison44/openfpga-validator.git"
},
"keywords": [
"analogue-pocket",
"openfpga"
],
"author": "Neil Morrison",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/neil-morrison44/openfpga-validator/issues"
},
"homepage": "https://github.com/neil-morrison44/openfpga-validator#readme",
"dependencies": {
"chalk": "^4.0.0",
"commander": "^9.4.1",
"node-stream-zip": "^1.15.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.12",
"jest": "^29.3.1",
"typescript": "^4.9.4"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": false
},
"bin": {
"openfpga-validator": "./bin/index.js"
},
"files": [
"lib/*"
]
}