-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.69 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@safareli/free",
"version": "0.0.0-placeholder",
"description": "Combination of a free applicative functor and free monad",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --no-ignore .eslintrc.js --ext js src test tools *.js",
"watch": "nodemon -q -x 'tap test/*.js'",
"test": "tap test/*.js --coverage",
"coverage": "tap --coverage-report=lcov --no-browser && codecov",
"coverage:open": "tap --coverage-report=lcov",
"coverage:check": "tap --check-coverage --branches 95 --functions 95 --lines 95 --statements 95",
"check": "npm run lint && npm run test -- --no-coverage-report && npm run coverage:check",
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "run-p build:*",
"build:main": "babel -s --out-dir dist src",
"build:umd": "webpack --output-filename free.umd.js",
"build:umd.min": "webpack --output-filename free.umd.min.js -p",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/safareli/free.git"
},
"keywords": [
"free",
"applicative",
"functor",
"monad"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"author": "Irakli Safareli <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/safareli/free/issues"
},
"homepage": "https://github.com/safareli/free#readme",
"dependencies": {
"daggy": "fantasyland/daggy#0704bc2b18f50e2c2f9fa5d8e05613f399b38e81",
"fantasy-land": "3.0.x",
"sanctuary-type-classes": "0.3.0",
"sanctuary-type-identifiers": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.10.4",
"babel-eslint": "6.1.0",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-2": "6.11.0",
"codecov": "1.0.1",
"commitizen": "2.8.2",
"conventional-recommended-bump": "0.2.1",
"cz-conventional-changelog": "1.1.6",
"eslint": "2.13.1",
"eslint-config-standard": "5.3.1",
"eslint-plugin-promise": "1.3.2",
"eslint-plugin-standard": "1.3.2",
"fantasy-combinators": "0.0.1",
"ghooks": "1.3.0",
"jsverify": "0.7.1",
"nodemon": "1.9.2",
"npm-run-all": "2.3.0",
"ramda": "0.21.0",
"ramda-fantasy": "0.7.0",
"rimraf": "2.5.3",
"semantic-release": "^4.3.5",
"tap": "6.1.1",
"webpack": "1.13.1"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"release": {
"analyzeCommits": "./tools/releaseAnalyzeCommits"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run check"
}
}
}