-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
35 lines (35 loc) · 892 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
33
34
35
{
"name": "qone",
"version": "2.0.0",
"main": "qone.js",
"description": "Next-generation web query language, extend .NET LINQ for javascript.",
"scripts": {
"lint": "eslint qone.js --fix",
"build": "uglifyjs -o qone.min.js --ie8 --compress --mangle -- qone.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dntzhang/qone"
},
"keywords": [
"qone",
"linq",
"query"
],
"dependencies": {},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"uglifyjs": "^2.4.11"
},
"author": "dntzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/dntzhang/qone/issues/new"
},
"homepage": "https://dntzhang.github.io/qone/"
}