-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "idle-queue-worker",
"version": "0.0.9",
"description": "Simple queue worker based on requestIdleCallback",
"main": "examples/src/index.js",
"scripts": {
"build": "npm run build:clean && npm run build:lib && npm run build:flow",
"build:clean": "rimraf lib",
"build:lib": "babel --ignore=*.spec.js src -d lib",
"build:flow": "flow-copy-source -v -i '*.spec.js' src lib",
"prepublish": "npm run lint && npm run test && npm run typecheck && npm run build",
"lint": "eslint src",
"typecheck": "flow check",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-omsk/idle-queue-worker.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/a-omsk/idle-queue-worker/issues"
},
"homepage": "https://github.com/a-omsk/idle-queue-worker#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.37.0",
"flow-copy-source": "^1.1.0",
"jest": "^18.0.0",
"rimraf": "^2.5.4",
"webpack": "^1.14.0"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
}
}