-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "tagged-versions",
"version": "1.3.0",
"description": "Get tagged semver-compatible project versions",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"validate": "./node_modules/eslint/bin/eslint.js src",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/ava --verbose",
"watch": "ava --watch",
"coverage": "nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikhemissi/tagged-versions.git"
},
"keywords": [
"tags",
"versions",
"semver",
"git",
"hash"
],
"author": "Iheb Khemissi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikhemissi/tagged-versions/issues"
},
"homepage": "https://github.com/ikhemissi/tagged-versions#readme",
"config": {
"commitizen": {
"path": "./node_modules/rb-conventional-changelog"
}
},
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.14",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-plugin-import": "^1.15.0",
"nyc": "^8.3.0",
"rb-conventional-changelog": "^1.1.9",
"sinon": "^1.17.6"
},
"dependencies": {
"child-process-promise": "^2.1.3",
"semver": "^5.3.0"
}
}