-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 971 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 971 Bytes
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
{
"name": "querier.js",
"version": "1.1.0",
"description": "Ease to query Enumerable entities",
"main": "dist/Querier.js",
"scripts": {
"test": "jasmine --no-color tests/spec/Querier-spec.js",
"lint": "jshint --verbose src/Querier.js",
"compile": "babel src --presets es2015 --out-dir dist",
"minify": "uglifyjs dist/Querier.js --output dist/Querier.min.js",
"prepublish": "npm run compile && npm run minify",
"build": "npm run test && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/karudedios/Querier.js.git"
},
"author": "cdedios",
"license": "MIT",
"bugs": {
"url": "https://github.com/karudedios/Querier.js/issues"
},
"homepage": "https://github.com/karudedios/Querier.js#readme",
"devDependencies": {
"babel": "^5.8.23",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"jasmine-es6": "0.0.17",
"jshint": "2.8.0",
"uglifyjs": "^2.4.10"
}
}