-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.99 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.99 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
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
{
"name": "lab-queue",
"version": "1.1.14",
"description": "General queue provider at Lab.Coop",
"main": "index",
"engines": {
"node": ">=6.9.1"
},
"scripts": {
"test": "npm run units && npm run features",
"watch": "npm-watch",
"units": "jest",
"units-watch": "jest --watch",
"features": "NODE_ENV=test node_modules/cucumber/bin/cucumber.js --compiler es6:babel-core/register",
"features-watch": "NODE_ENV=test node_modules/nodemon/bin/nodemon.js node_modules/cucumber/bin/cucumber.js --compiler es6:babel-core/register",
"dist": "node_modules/babel-cli/bin/babel.js . --out-dir dist --ignore dist,node_modules --presets es2015",
"release": "npm version patch && rm -rf dist && npm run dist && cp package.json dist/ && cd dist && npm publish"
},
"watch": {
"features": {
"patterns": [
"dist/**"
],
"extensions": [
"js",
"json",
"feature"
],
"ignore": [
"node_modules"
]
},
"units": {
"patterns": [
"dist/**/*.test.js",
"dist/**/*.spec.js"
],
"extensions": [
"js"
],
"ignore": [
"node_modules"
]
}
},
"author": "Denes Pal <denes.pal@lab.coop>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"cucumber": "^1.3.1",
"jest": "^17.0.3",
"nodemon": "^1.11.0",
"npm-watch": "^0.1.6",
"q": "^1.4.1"
},
"jest": {
"verbose": true,
"bail": false,
"testPathDirs": [
"dist/"
]
},
"dependencies": {
"amqplib": "^0.5.1",
"azure": "^1.2.0-preview",
"babel-runtime": "^6.20.0",
"bottlejs": "^1.5.0",
"config": "^1.25.1",
"lab-config": "github:lab-coop/lab-config",
"lab-di": "github:lab-coop/lab-di",
"lodash": "^4.17.2",
"rr": "^0.1.0",
"shortid": "^2.2.6",
"winston": "^2.3.1"
}
}