-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1 KB
/
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
{
"name": "@nanoexpress/route-syntax-parser",
"description": "Syntax parser for each router to power performance of nanoexpress",
"version": "1.0.0",
"type": "module",
"typings": "typings/analyze.d.ts",
"main": "esm/analyze.js",
"license": "GPL-3.0",
"scripts": {
"lint": "smartlint",
"prepare": "husky install",
"build": "rollup -c",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"commitlint-config-airlight": "^6.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-config-airlight-node": "^4.0.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"lint-staged-config-airlight": "^4.0.2",
"prettier": "^2.8.8",
"prettier-config-airlight": "^2.0.1",
"rollup": "^3.29.4",
"rollup-plugin-typescript2": "^0.36.0",
"smartlint": "^6.0.4",
"typescript": "^5.0.2"
}
}