-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
42 lines (42 loc) · 1.13 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": "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-show": "2.0.0",
"sanctuary-type-identifiers": "1.0.0"
},
"devDependencies": {
"benchmark": "2.1.3",
"cli-table": "0.3.1",
"colors": "1.1.2",
"daggy": "1.3.0",
"eslint": "6.8.x",
"fantasy-combinators": "0.0.x",
"sanctuary-style": "4.0.x",
"standard": "8.6.0",
"tap": "10.0.0",
"xyz": "3.0.x"
},
"scripts": {
"lint": "eslint --config node_modules/sanctuary-style/eslint-es3.json --global define --global module --global require --global self -- src/daggy.js && standard bench/*.js test/*.js",
"release": "xyz --repo git@github.com:fantasyland/daggy.git --increment",
"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.5.0"
}