-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.77 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
{
"name": "oe-workflow",
"description": "oe-workflow engine written using oecloud.io framework",
"version": "2.3.0",
"engines": {
"node": ">=6"
},
"main": "index.js",
"scripts": {
"clean": "if-env NODE_ENV=oracle && npm run clean:oracle || npm run clean2",
"clean2": "if-env NODE_ENV=postgres && npm run clean:postgres || npm run clean:mongo",
"clean:mongo": "mongo oe-workflow-test --eval \"db.dropDatabase();\"",
"clean:oracle": "node test/oracle-utility.js",
"clean:postgres": "echo \"Not implemented\" && exit 1",
"pretest": "npm install --no-optional",
"test": "grunt mochaTest",
"lint": "eslint .",
"fix-lint": "eslint --fix .",
"grunt-cover": "grunt test-with-coverage",
"checks": "eslint . && npm run clean && grunt test-with-coverage",
"app": "node bin/app.js"
},
"dependencies": {
"async": "2.6.1",
"iso8601-duration": "1.2.0",
"loopback-connector-rest": "3.7.0",
"oe-cloud": "^2.0.0",
"oe-common-mixins": "^2.0.0",
"oe-master-job-executor": "^2.0.0",
"uuid": "3.3.2",
"xml2js": "0.4.17"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"chai": "3.4.1",
"chai-datetime": "1.4.0",
"chai-things": "0.2.0",
"chalk": "1.1.1",
"eslint": "4.10.0",
"grunt": "1.0.4",
"grunt-cli": "1.3.2",
"grunt-contrib-clean": "2.0.0",
"grunt-mocha-istanbul": "5.0.2",
"if-env": "1.0.4",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"oe-business-rule": "^2.0.0",
"oe-connector-mongodb": "^2.0.0",
"oe-connector-oracle": "^2.0.0",
"oe-connector-postgresql": "^2.0.0",
"superagent-defaults": "0.1.14",
"supertest": "3.4.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EdgeVerve/oe-workflow.git"
}
}