-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.43 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
{
"name": "version-attribute",
"description": "Node package to help traverse and retrieve version keys and their properties (ex: 1.0.1) in an object.",
"main": "lib/versionAttribute.js",
"scripts": {
"test": "istanbul cover --print both nodeunit ./test",
"lint": "eslint .",
"coverage": "istanbul check-coverage --statements 95 --lines 95 --branches 95 --functions 100",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/thebruce/version-attribute.git"
},
"keywords": [
"version",
"attribute",
"traversal"
],
"author": "David Diers <david.diers@gmail.com> (http://daviddiers.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thebruce/version-attribute/issues"
},
"homepage": "https://github.com/thebruce/version-attribute#readme",
"devDependencies": {
"eslint": "^3.3.1",
"eslint-find-rules": "^1.13.0",
"eslint-plugin-import": "^2.0.1",
"eslint-config-airbnb-base": "^11.1.3",
"ghooks": "^1.0.1",
"istanbul": "^0.4.2",
"nodeunit": "^0.11.1",
"npm-run-all": "^4.0.2",
"semantic-release": "^6.3.6"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"dependencies": {
"lodash": "^4.16.4"
},
"engines": {
"node": ">=6"
}
}