-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "burrido",
"version": "1.0.8",
"description": "Monadic do-notation for JavaScript",
"main": "burrido.js",
"scripts": {
"build": "browserify -s burrido src/burrido.js -o burrido.js -t [ babelify ]",
"test": "mocha \"src/**/*.spec.js\" --compilers js:babel-register --reporter min",
"test:watch": "npm run test -- --watch",
"release": "xyz",
"release:patch": "xyz --increment patch",
"release:minor": "xyz --increment minor",
"release:major": "xyz --increment major"
},
"author": "Thomas Crockett",
"license": "MIT",
"dependencies": {
"immutagen": "^1.0.0"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"mocha": "2.4.5",
"xyz": "^0.5.0"
},
"keywords": [
"monad",
"do",
"notation",
"syntax",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/pelotom/burrido.git"
}
}