-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "organic-dna-resolve",
"version": "1.2.0",
"author": "multi",
"description": "Shotgun for resolving DNA values",
"main": "index.js",
"scripts": {
"release-patch": "npm run test && npm version patch && npm publish && git push --tags && git push origin master",
"release-minor": "npm run test && npm version minor && npm publish && git push --tags && git push origin master",
"release-major": "npm run test && npm version major && npm publish && git push --tags && git push origin master",
"test": "node ./node_modules/.bin/tape tests/**/*.spec.js"
},
"license": "MIT",
"dependencies": {
"clone": "^2.1.2",
"organic-dna-branches": "^1.0.0"
},
"devDependencies": {
"tape": "^5.3.2"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/camplight/organic-dna-resolve.git"
},
"bugs": {
"url": "https://github.com/camplight/organic-dna-resolve/issues"
},
"homepage": "https://github.com/camplight/organic-dna-resolve"
}