-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.85 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
{
"name": "pipep",
"description": "Functional, composable, immutable and curried promise sequences that automatically handle Promise resolution.",
"version": "0.1.1",
"author": "Declan de Wet <[email protected]>",
"ava": {
"verbose": true
},
"bugs": {
"url": "https://github.com/declandewet/pipep/issues"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-eslint": "^7.1.0",
"codecov": "^1.0.1",
"cross-env": "^3.1.3",
"doctoc": "^1.2.0",
"nyc": "^8.4.0",
"standard": "^8.5.0",
"uglify-js": "^2.6.4",
"umd": "^3.0.1"
},
"files": [
"pipep.js",
"pipep.min.js"
],
"homepage": "https://github.com/declandewet/pipep#readme",
"keywords": [
"async",
"asynchronous",
"compose",
"composition",
"fp",
"functional",
"pipe",
"pipeline",
"programming",
"promise",
"sequence"
],
"license": "MIT",
"main": "pipep.js",
"nyc": {
"cache": true,
"all": true,
"include": [
"index.js"
],
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/declandewet/pipep.git"
},
"scripts": {
"build": "concurrently \"npm run build-umd\" \"npm run build-umd-min\"",
"build-umd": "cat index.js | umd pipe-p -c > pipep.js",
"build-umd-min": "cat index.js | umd pipe-p -c | uglifyjs -c -m > pipep.min.js",
"codecov": "npm run coverage && codecov",
"coverage": "cross-env NODE_ENV=test nyc report",
"lint": "standard",
"prebuild": "npm run test",
"prerelease": "npm run build",
"pretest": "npm run lint",
"preversion": "npm run toc && npm test",
"release": "npm publish",
"test": "cross-env NODE_ENV=test nyc ava",
"toc": "doctoc README.md --title '# Table of Contents'"
},
"standard": {
"parser": "babel-eslint",
"verbose": true
}
}