forked from nodemod/examples-goldsrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 868 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 868 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
38
39
{
"name": "nodemod-examples",
"version": "1.0.0",
"description": "Comprehensive examples and test suite for nodemod API",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "npm run build && node dist/benchmark.js",
"benchmark": "npm run test",
"dev": "npm run build:watch"
},
"keywords": [
"nodemod",
"half-life",
"benchmark",
"testing"
],
"author": "NodeMod Team",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"express": "^4.18.1",
"express-static": "^1.2.6",
"@nodemod/core": "^1.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"installConfig": {
"hoistingLimits": "workspaces"
}
}