forked from fantasyland/daggy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
43
{
"name": "daggy",
"description": "Library for creating tagged constructors.",
"repository": {
"type": "git",
"url": "https://github.com/fantasyland/daggy.git"
},
"keywords": [
"constructor"
],
"author": "Brian McKenna",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"sanctuary-type-classes": "3.0.0",
"sanctuary-type-identifiers": "1.0.0"
},
"devDependencies": {
"benchmark": "2.1.3",
"cli-table": "0.3.1",
"colors": "1.1.2",
"daggy": "1.0.0",
"fantasy-combinators": "0.0.x",
"standard": "8.6.0",
"tap": "10.0.0",
"xyz": "2.1.x"
},
"scripts": {
"lint": "standard bench/*.js src/*.js test/*.js",
"lint:fix": "npm run lint -- --fix",
"release-major": "xyz --repo [email protected]:fantasyland/daggy.git --increment major",
"release-minor": "xyz --repo [email protected]:fantasyland/daggy.git --increment minor",
"release-patch": "xyz --repo [email protected]:fantasyland/daggy.git --increment patch",
"test": "tap -R tap test/*.js",
"check": "npm run lint && npm run test",
"bench": "node bench/"
},
"files": [
"src/*.js"
],
"main": "src/daggy.js",
"version": "1.1.0"
}