-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.16 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
{
"name": "usco-ym-storage",
"version": "0.1.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/usco/usco-ym-storage.git"
},
"main": "lib/index.js",
"dependencies": {
"composite-detect": "0.0.3",
"fast.js": "^0.1.1",
"ramda": "^0.21.0",
"rx": "^4.0.7",
"usco-utils": "github:usco/usco-utils"
},
"devDependencies": {
"assert": "^1.3.0",
"ava": "^0.14.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0"
},
"scripts": {
"mocha": "mocha lib",
"test": "ava src/**/*.spec.js --verbose",
"build": "babel -d lib src/",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm run build; git commit -a -m 'chore(dist): built release/'; npm version patch && git push origin master --tags ",
"release-minor": "git checkout master && npm run build; git commit -a -m 'chore(dist): built release/'; npm version minor && git push origin master --tags ",
"release-major": "git checkout master && npm run build; git commit -a -m 'chore(dist): built release/'; npm version major && git push origin master --tags "
}
}