-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "rison-node",
"version": "2.1.1",
"main": "js/rison.js",
"scripts": {
"preversion": "npm run test",
"version": "npm-auto-version",
"test:only": "tape \"tests/*.js\"",
"test": "npm run lint && npm run test:only",
"lint": "eslint \"js/*.js\" \"tests/*.js\"",
"precommit": "lint-staged",
"prepush": "npm run test"
},
"author": "Joe Fleming (https://github.com/w33ble)",
"description": "data serialization format optimized for compactness in URIs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/w33ble/rison-node.git"
},
"files": [
"js",
"LICENSE.md",
"README.md",
"AUTHORS.md",
"CHANGELOG.md"
],
"lint-staged": {
"ignore": [
"package.json",
"js/rison.js"
],
"linters": {
"*.{js,mjs}": [
"eslint --fix"
],
"*.{js,mjs,json,css}": [
"prettier --write"
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@w33ble/npm-auto-tools": "*",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "^1.12.0",
"tape": "^4.2.2"
}
}