-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "sql-query-identifier",
"version": "2.8.0",
"description": "A SQL query identifier",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha --require ts-node/register --reporter spec --recursive './test/**/*.ts'",
"test:watch": "npm run test -- --watch --watch-extensions .spec.ts --bail ./test",
"lint": "eslint .",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"webpack:prod": "NODE_ENV=production webpack",
"webpack:dev": "NODE_ENV=development webpack --progress --color --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/coresql/sql-query-identifier.git"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"chai": "^4.2.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-webpack-plugin": "^2.5.2",
"mocha": "^8.2.1",
"prettier": "^2.3.2",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.17",
"ts-node": "^10.9.2",
"typescript": "^4.1.5",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"engines": {
"node": ">= 10.13"
}
}