-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
138 lines (138 loc) · 3.54 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "apr",
"private": true,
"description": "this is like caolan/async which is like lodash but async, but awaitful",
"homepage": "https://ramitos.github.io/apr",
"bugs": "https://github.com/ramitos/apr/issues",
"license": "MIT",
"author": "Sérgio Ramos <[email protected]> (http://sergioramos.me)",
"repository": "ramitos/apr",
"keywords": [
"async",
"await",
"promise",
"control",
"flow",
"control-flow",
"awaitful",
"promises",
"async-await",
"es2015",
"es2016",
"es2017",
"es6",
"es7",
"es8"
],
"scripts": {
"test": "NODE_ENV=test nyc --reporter=html ava test/*.js -c 2 --fail-fast -v",
"fmt": "prettier --write --single-quote {packages,scripts,test}/**/*.js",
"lint": "eslint --fix .",
"coverage": "nyc report --reporter=text-lcov | codeclimate-test-reporter",
"commit": "git-cz",
"publish": "lerna publish",
"clean": "lerna clean --yes",
"bootstrap": "lerna bootstrap",
"prepublish": "lerna run prepublish --parallel --stream",
"lint-staged": "lint-staged"
},
"devDependencies": {
"array-shuffle": "^1.0.1",
"ava": "^0.24.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-joyent-portal": "^6.0.1",
"build-array": "^1.0.0",
"bulk-require": "^1.0.1",
"codeclimate-test-reporter": "^0.5.0",
"commitizen": "^2.9.6",
"cz-emoji": "^1.1.0",
"delay": "^2.0.0",
"documentation": "^5.3.5",
"eslint": "^4.16.0",
"eslint-config-joyent-portal": "^3.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-config-xo-space": "^0.17.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.5.1",
"globby": "^7.1.1",
"husky": "^0.14.3",
"lerna": "2.8.0",
"lerna-changelog": "^0.7.0",
"lint-staged": "^6.0.1",
"lodash.flatten": "^4.4.0",
"lodash.isstring": "^4.0.1",
"lodash.union": "^4.6.0",
"mz": "^2.7.0",
"npm-check-updates": "^2.14.0",
"nyc": "^11.4.1",
"param-case": "^2.1.1",
"prettier": "^1.10.2",
"pump": "^2.0.1",
"random-natural": "^1.0.3",
"read-yaml": "^1.1.0",
"remark": "^9.0.0",
"remove-markdown": "^0.2.2",
"stream-array": "^1.1.2",
"tap-mocha-reporter": "3.0.6",
"timeout-then": "^1.1.0",
"vinyl-fs": "^3.0.1"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"types": [
{
"name": "feature \t🌟 A new feature",
"value": ":star2:"
},
{
"name": "fix \t\t🐞 A bug fix",
"value": ":beetle:"
},
{
"name": "docs \t\t📚 Documentation change",
"value": ":books:"
},
{
"name": "refactor \t🎨 A code refactoring change",
"value": ":art:"
},
{
"name": "chore \t🔩 A chore change",
"value": ":nut_and_bolt:"
},
{
"name": "lint \t\t💅 A code lint fix",
"value": ":nail_care:"
},
{
"name": "test \t\t☔️ A test related change",
"value": ":umbrella:"
}
]
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write --single-quote",
"git add"
]
},
"workspaces": [
"packages/*"
]
}