-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "query",
"version": "1.0.2",
"description": "SQL like data query",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"lint": "eslint --ext .js src/",
"lint-fix": "eslint --fix --ext .js src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/S-mohan/query.git"
},
"keywords": [
"sql",
"query",
"data"
],
"author": "smohan <https://smohan.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/S-mohan/query/issues"
},
"homepage": "https://github.com/S-mohan/query#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"string-replace-loader": "^2.1.1",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3"
}
}