-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.36 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.36 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
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
{
"private": true,
"name": "async-af",
"description": "The asynciest of async libs there ever was or ever will be...AsyncAF!?",
"author": "Scott Rudiger (https://github.com/ScottRudiger)",
"license": "MIT",
"licenseUrl": "https://github.com/AsyncAF/AsyncAF/blob/master/LICENSE",
"version": "7.0.59",
"homepage": "https://async-af.js.org",
"bugs": {
"url": "https://github.com/AsyncAF/AsyncAF/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AsyncAF/AsyncAF.git"
},
"keywords": [
"AsyncAF",
"async-af",
"async",
"await",
"async/await",
"Promise",
"Promises",
"library",
"array",
"method",
"methods",
"parallel",
"series",
"serial",
"map",
"forEach",
"reduce",
"filter",
"every",
"some",
"includes",
"find",
"findIndex",
"indexOf",
"lastIndexOf",
"join",
"split"
],
"main": "./lib/AsyncAF.js",
"sideEffects": false,
"scripts": {
"start": "make start",
"test": "make test",
"test:base": "mocha -r @babel/register -r @babel/polyfill --recursive -R nyan --inline-diffs",
"test:watch": "npm run test:base -- --watch",
"test:built": "make test-built",
"cover": "make cover",
"cover:open": "opener file://$(pwd)/coverage/lcov-report/index.html",
"lint": "make lint",
"build": "make build",
"build:dev": "webpack --mode development --cache --env.modern",
"build:watch": "npm run build:dev -- --watch",
"docs": "make docs",
"docs:open": "opener file://$(pwd)/docs/out/index.html",
"docs:publish": "make docs-publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"preversion": "npm run lint && npm run cover && npm run test:built",
"release": "lerna exec -- npm publish",
"babel-node": "babel-node"
},
"eslintConfig": {
"extends": "@scottrudiger"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "make commit"
}
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@scottrudiger/eslint-config": "^0.7.1",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-istanbul": "^4.1.6",
"browserslist": "^4.16.6",
"caniuse-lite": "^1.0.30001228",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.2",
"concurrently": "^3.5.1",
"conventional-changelog-cli": "^1.3.22",
"delay": "^4.0.1",
"docdash": "github:AsyncAF/docdash",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.17.2",
"fs-extra": "^5.0.0",
"gh-pages": "^2.0.1",
"husky": "^1.0.0-rc.4",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.2",
"lerna": "^2.11.0",
"mocha": "^4.0.1",
"nyc": "^14.1.1",
"opener": "^1.4.3",
"rollup": "^0.59.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}