-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 919 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
27
28
29
30
31
32
33
{
"name": "flunc-optics",
"version": "0.0.2",
"description": "Profunctor optics - lenses, prisms, traversals, folds and isos",
"repository": {
"type": "git",
"url": "https://github.com/flunc/optics.git"
},
"main": "index.js",
"scripts": {
"release-major": "xyz --repo [email protected]:flunc/optics.git --increment major",
"release-minor": "xyz --repo [email protected]:flunc/optics.git --increment minor",
"release-patch": "xyz --repo [email protected]:flunc/optics.git --increment patch",
"test": "npm run test:unit && npm run test:examples",
"test:unit": "mocha test .",
"test:examples": "mocha examples"
},
"author": "Scott Christopher",
"license": "MIT",
"dependencies": {
"ramda": "0.19.x",
"ramda-fantasy": "0.5.x"
},
"devDependencies": {
"jsverify": "0.7.x",
"mocha": "2.3.x",
"xyz": "0.5.x"
},
"files": [
"index.js",
"src"
]
}