-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 792 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 792 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
{
"name": "jisu",
"version": "1.0.4",
"description": "Work in progress JavaScript parser",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"start": "tsc -p tsconfig.json && TS_NODE_BASEURL=./dist node -r tsconfig-paths/register dist/src/demo.js",
"test": "jest --silent",
"prepare": "tsc && tsconfig-replace-paths --project tsconfig.json"
},
"author": "ben-sb",
"license": "ISC",
"devDependencies": {
"@babel/generator": "^7.18.9",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"tsconfig-paths": "^4.0.0",
"tsconfig-replace-paths": "^0.0.11",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}