-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.25 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
{
"name": "blank-node-worker",
"version": "0.3.62",
"description": "JavaScript task runner for Blank platform",
"main": "lib/worker.js",
"scripts": {
"buildCore": "rm -rf ./lib/blank-js-core && ./node_modules/babel-cli/bin/babel.js ./blank-js-core -d lib/blank-js-core",
"start": "NODE_PATH='./local:./lib/blank-js-core' node ./lib/worker.js",
"test": "NODE_PATH='./local:./lib/blank-js-core' NODE_ENV='test' mocha --exit -t 5000 ./tests",
"patch": "npm version patch && npm run push",
"push": "git push origin master --follow-tags && npm publish",
"next": "npm version prerelease && git push origin master --follow-tags && npm publish --tag next"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/getblank/blank-node-worker.git"
},
"keywords": [
"Blank"
],
"author": {
"email": "info@getblank.net",
"name": "Evgeniy Kuvshinov & Evgeniy Ivakha"
},
"homepage": "http://getblank.net",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/getblank/blank-node-worker/issues"
},
"dependencies": {
"excel-export": "^0.5.1",
"exceljs": "^1.6.3",
"fast-json-patch": "^2.2.1",
"fs-extra": "^4.0.0",
"handlebars": "^4.0.5",
"js-scrypt": "latest",
"jszip": "^3.0.0",
"lodash.clonedeep": "^4.5.0",
"minimist": "latest",
"moment": "^2.22.0",
"mongodb": "^3.1",
"node-fetch": "^2.6.0",
"nodemailer": "^4.7.0",
"pg": "^7.6.1",
"pg-hstore": "^2.3.2",
"pg-native": "^3.0.0",
"request": "^2.88.0",
"sequelize": "^4.41.2",
"sift": "^3.2.1",
"unstream": "^2.0.0",
"uuid": "^3.0.0",
"winston": "^2.2.0",
"winston-graylog2": "latest",
"winston-logzio": "^1.0.1",
"ws": "latest"
},
"optionalDependencies": {
"scrypt": "^6.0.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"mocha": "latest"
},
"babel": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}