-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
84 lines (84 loc) · 2.16 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
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
{
"name": "@nx-js/queue-util",
"version": "1.1.1",
"description": "An NX queue utility for splitting up heavy work.",
"main": "dist/cjs.es5.js",
"module": "dist/es.es5.js",
"files": [
"dist"
],
"scripts": {
"test": "node ./scripts/test.js",
"test-builds": "node ./scripts/testBuilds.js",
"lint": "standard",
"lint-fix": "prettier --ignore-path '.gitignore' --write '**/!(bundle).js' && standard --fix",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build": "node ./scripts/build.js",
"build-toc": "node ./scripts/buildToc.js"
},
"author": {
"name": "Miklos Bertalan",
"email": "miklos.bertalan@risingstack.com"
},
"repository": {
"type": "git",
"url": "git@github.com:nx-js/queue-util.git"
},
"bugs": {
"url": "/~https://github.com/nx-js/queue-util/issues"
},
"homepage": "/~https://github.com/nx-js/queue-util#readme",
"license": "MIT",
"keywords": [
"nx",
"queue",
"task",
"60fps"
],
"devDependencies": {
"babel-core": "6.25.0",
"babel-minify": "^0.2.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"buble": "^0.15.2",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"dirty-chai": "^2.0.1",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^5.0.1",
"karma-source-map-support": "^1.2.0",
"markdown-toc": "^1.1.0",
"mocha": "^3.5.0",
"nyc": "11.1.0",
"pre-push": "^0.1.1",
"prettier": "^1.6.1",
"rollup": "^0.49.0",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-auto-external": "^1.0.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-coverage": "^0.1.4",
"rollup-plugin-node-resolve": "^3.0.0",
"standard": "^10.0.3"
},
"engines": {
"node": ">=6.5.0"
},
"standard": {
"env": [
"browser",
"mocha"
]
},
"pre-push": [
"lint",
"test"
]
}