-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "redux-queue",
"version": "0.2.0",
"description": "Library to handle queued requests with ease in your Redux application",
"homepage": "https://github.com/JBlaak/Redux-Queue/",
"repository": {
"type": "git",
"url": "git://github.com/JBlaak/Redux-Queue.git"
},
"main": "lib/reducer.js",
"scripts": {
"build": "tsc",
"lint": "./node_modules/.bin/tslint -c ./tslint.json ./src/*.ts",
"lint-fix": "./node_modules/.bin/tslint -c ./tslint.json ./src/*.ts --fix",
"mocha": "mocha --compilers js:babel-register",
"test": "yarn build && yarn lint && yarn mocha",
"prepublish": "yarn build"
},
"keywords": [
"Redux",
"Queue",
"Async"
],
"author": "Joris Blaak <joris@label305.com>",
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.6.5",
"expect.js": "^0.3.1",
"mocha": "^2.4.5",
"tslint": "^4.4.2",
"tslint-eslint-rules": "^3.4.0",
"typescript": "^2.2.1"
}
}