-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.72 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
{
"name": "simflow",
"version": "0.4.0",
"engines": {
"node": ">= 7.10"
},
"description": "Simply define and run your flows in Chrome",
"main": "index.js",
"bin": {
"simflow": "index.js"
},
"scripts": {
"pegjs": "pegjs -o lib/step-parser.js lib/step.pegjs",
"lint": "eslint .",
"test": "npm run pegjs && mocha --reporter spec --bail --check-leaks test/",
"test-ci": "npm run pegjs && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-cov": "npm run pegjs && istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"push": "git checkout master && git push origin master",
"not-dirty": "test -z \"$(git status --porcelain)\"",
"bump:patch": "npm run lint && npm run test && npm run not-dirty && npm run push && npm version patch && git push --tags && npm publish",
"bump:minor": "npm run lint && npm run test && npm run not-dirty && npm run push && npm version minor && git push --tags && npm publish",
"bump:major": "npm run lint && npm run test && npm run not-dirty && npm run push && npm version major && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gedex/simflow.git"
},
"author": "Akeda Bagus <admin@gedex.web.id>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gedex/simflow/issues"
},
"homepage": "https://github.com/gedex/simflow#readme",
"dependencies": {
"ajv": "^6.6.2",
"flat": "^4.1.0",
"listr": "^0.14.3",
"minimist": "^1.2.0",
"puppeteer": "^1.11.0"
},
"devDependencies": {
"eslint": "^5.11.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"pegjs": "^0.10.0"
}
}