-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "async-buffer-sc",
"version": "0.3.0",
"description": "Queue, buffer and execute prioritized promises",
"main": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"build": "babel src -d dist",
"prepublish": "npm run clean && npm run lint && npm run build",
"postinstall": "npm run clean && npm run lint && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sagic/async-buffer.git"
},
"author": "sagi chizik <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sagic/async-buffer/issues"
},
"homepage": "https://github.com/sagic/async-buffer#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
}
}