-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
29 lines (29 loc) · 890 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
{
"name": "nginx-njs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:clean": "rm -rf dist && mkdir dist",
"build:rollup": "rollup -c",
"build": "npm run build:clean && npm run build:rollup",
"format": "prettier --write \"src/**/*.ts\" ",
"lint": "eslint 'src/**/*.ts' --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"njs-types": "^0.5.3",
"prettier": "^2.2.1",
"rollup": "^2.46.0",
"typescript": "^4.2.4"
}
}