-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 956 Bytes
/
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
{
"name": "esmakefile",
"version": "0.6.1",
"description": "JavaScript build system inspired by Make",
"main": "dist/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "nyc mocha",
"example": "node dist/example/make.js --srcdir src/example"
},
"keywords": [],
"author": "Nicholas Gulachek",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"ink": "^5.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.12.2",
"@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"eslint": "^8.57.0",
"chai": "^5.1.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",
"sass": "^1.64.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.4.3"
}
}