-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.34 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.34 KB
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
94
95
96
97
98
{
"name": "functional-pipelines",
"version": "0.0.0-development",
"description": "functional pipelines for Java Script",
"main": "lib/index.js",
"scripts": {
"commit": "git-cz",
"test": "jest",
"prebuild": "rimraf lib",
"build": "babel --copy-files --out-dir lib --ignore *.spec.js src",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-runtime": "~6.26.0"
},
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-env": "~1.2.2",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"@semantic-release/commit-analyzer": "^5.1.0",
"eslint": "~3.18.0",
"jest": "~19.0.2",
"rimraf": "^2.6.1",
"semantic-release": "^15.7.1",
"travis-deploy-once": "^5.0.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "feat",
"release": "minor"
},
{
"type": "docs",
"scope": "README",
"release": "patch"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "perf",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/sdawood/functional-pipelines.git"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"keywords": [
"functional",
"pipe",
"compose",
"async",
"transducer",
"reduce",
"pure"
],
"author": "Shaady Dawood <shaadydawood@gmail.com> (http://github.com/sdawood/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdawood/functional-pipelines/issues"
},
"homepage": "https://github.com/sdawood/functional-pipelines#readme"
}