-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.84 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.84 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "quri",
"version": "2.1.0",
"description": "JS wrapper for the QURI string specification",
"main": "dist/quri.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist coverage",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json",
"watch": "watch 'npm run build' src test",
"test": "mocha",
"prebuild": "npm run check -s && npm run clean -s",
"build": "babel --optional runtime src -d dist",
"postbuild": "npm run test -s",
"coverage": "istanbul cover _mocha",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theHarvester/quri-js.git"
},
"keywords": [
"QURI",
"query string"
],
"author": "James Harvey <james.harvey994@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theHarvester/quri-js/issues"
},
"homepage": "https://github.com/theHarvester/quri-js#readme",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.6.4",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"coveralls": "*",
"dependency-check": "*",
"doctoc": "*",
"eslint": "*",
"eslint-config-airbnb": "^6.2.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5",
"rimraf": "*",
"watch": "*"
}
}