-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.51 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.51 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
{
"name": "promise-batching-queue",
"version": "0.0.5",
"description": "Promise batching library. Runs promises in ordered queues which can be limited to a maximum size.",
"repository": "https://github.com/POPinNow/PromiseBatcher",
"author": "Peter Yamanaka <developer@popinnow.com>",
"license": "Apache-2.0",
"private": false,
"main": "dist/promisebatcher.min.js",
"keywords": [
"promisebatcher",
"promise-batcher",
"promise-queue",
"promise"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "~7.4.3",
"@babel/preset-env": "~7.4.3",
"@babel/register": "~7.4.0",
"babel-loader": "~8.0.5",
"chai": "~4.2.0",
"chai-as-promised": "~7.1.1",
"cross-env": "~5.2.0",
"mocha": "~6.1.4",
"uglifyjs-webpack-plugin": "~2.1.2",
"webpack": "~4.30.0",
"webpack-cli": "~3.3.1"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --colors --optimize-minimize",
"debug": "cross-env NODE_ENV=development webpack --progress --colors",
"test": "mkdir -p dist/test && webpack --progress --colors ./test/*.test.js -o ./dist/test/tests.js --target node && mocha --require @babel/register --colors ./dist/test/tests.js",
"clean-dist": "[ -e ./dist ] && [ -d ./dist ] && rm -rf ./dist",
"clean-modules": "[ -e ./node_modules ] && [ -d ./node_modules ] && rm -rf ./node_modules",
"clean": "yarn clean-dist && yarn clean-modules",
"prepare-publish": "yarn clean && yarn && yarn test && yarn clean-dist && yarn build"
}
}