-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 970 Bytes
/
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
{
"name": "organic-dna-fold",
"version": "1.0.1",
"description": "DNA utility function folding DNA structure with support for array manupulations and node overriding",
"main": "index.js",
"scripts": {
"test": "mocha",
"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"
},
"repository": {
"type": "git",
"url": "git://github.com/node-organic/organic-dna-fold.git"
},
"author": "Boris Filipov",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-organic/organic-dna-fold/issues"
},
"homepage": "https://github.com/node-organic/organic-dna-fold",
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3"
}
}