-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 900 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 900 Bytes
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
{
"name": "esmakefile-c",
"version": "0.3.2",
"description": "esmakefile C development tools",
"main": "dist/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "nyc mocha",
"lint": "eslint .",
"example": "node dist/example/make.js --development --source-root src/example"
},
"keywords": [],
"author": "Nicholas Gulachek",
"license": "ISC",
"dependencies": {
"@types/node": "^18.11.3",
"commander": "^9.5.0",
"esmakefile": "^0.5.1"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"chai": "^4.3.7",
"eslint": "^8.45.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}