-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "@thisables/bind-first",
"version": "2.0.3",
"description": "convert data-first functions into `::`-functions",
"license": "MIT",
"repository": "thisables/bind-first",
"author": {
"name": "Stoeffel",
"email": "schtoeffel@gmail.com",
"url": "stoeffel.github.io"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"develop": "nodangel --ignore node_modules --ignore 'npm run --silent test'",
"test": "mocha ./tests --compilers js:babel/register",
"transpile": "babel module --out-dir ./",
"prepublish": "npm run transpile",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"major-release": "npm version major && npm publish && git push --follow-tags"
},
"files": [
"index.js"
],
"keywords": [
"function",
"bind"
],
"dependencies": {},
"devDependencies": {
"babel": "^5.8.20",
"jshint": "^2.8.0",
"mocha": "^2.2.5"
}
}