-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.75 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.75 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@appliedengdesign/gcode-reference",
"version": "0.0.8",
"description": "Node module to provide descriptions and reference to CNC G-Codes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/appliedengdesign/gcode-reference.git"
},
"keywords": [
"nodejs",
"node",
"typescript",
"reference",
"mill",
"cnc",
"gcode",
"lathe",
"milling",
"turning",
"appliedengdesign"
],
"author": {
"name": "Mike Centola",
"url": "https://github.com/mikecentola"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/appliedengdesign/gcode-reference/issues"
},
"homepage": "https://github.com/appliedengdesign/gcode-reference#readme",
"publishConfig": {
"access": "public"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/appliedengdesign"
},
"scripts": {
"build": "npm run test:all && tsc --project tsconfig.build.json",
"clean": "shx rm -rf dist/*",
"compile": "tsc --project tsconfig.build.json",
"copyJSON": "npx ts-node ./scripts/copyJSON.ts",
"getCodes": "npx ts-node ./scripts/getCodes.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepack": "npm run clean && npm run build && npm run copyJSON",
"pretty": "prettier --config .prettierrc --check .",
"pretty:fix": "prettier --config .prettierrc --write .",
"refresh": "shx rm-rf ./node_modules ./package-lock.json && npm install",
"test:all": "mocha --require ts-node/register test/**/*.ts",
"test:gref": "mocha --require ts-node/register test/gReference.test.ts",
"test:json": "mocha --require ts-node/register test/validateJSON.test.ts"
},
"devDependencies": {
"@appliedengdesign/cnccodes-json-schema": "^0.3.0",
"@eslint/js": "^9.36.0",
"@eslint/json": "^0.13.2",
"@eslint/markdown": "^7.3.0",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.18.8",
"ajv": "^8.17.1",
"chai": "^6.2.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-yml": "^1.18.0",
"mocha": "^11.7.3",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
}
}