-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 904 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
{
"name": "trailblazer",
"version": "6.0.0",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": "https://github.com/philipahlberg/trailblazer.git",
"author": "philipahlberg <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "windtunnel test ./tests/index.mjs",
"bench": "npm run build && node benches/index.js"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/benchmark": "^2.1.2",
"@types/node": "^18.13.0",
"@windtunnel/assert": "^0.6.2",
"@windtunnel/cli": "^0.6.2",
"benchmark": "^2.1.4",
"path-to-regexp": "^6.2.0",
"regexparam": "^2.0.1",
"rollup": "^3.15.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}