-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 3.14 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
85
86
87
88
89
90
91
{
"name": "flowie",
"version": "0.0.1-alpha.8",
"description": "Library for creating, and working with flows",
"main": "dist/index.js",
"scripts": {
"build": "npm run compileDots && tsc && rsync -a src/compiler/dot/*.js dist/compiler/dot",
"prepublishOnly": "npm run build",
"seed": "node -e \"console.log(require('faker').random.number({ min: 1000, max: 9999 }))\"",
"lint": "eslint --ext .ts src/ tests/",
"lint:fix": "eslint --ext .ts --fix src/ tests/",
"test": "export SEED=`npm run seed | tail -1` npm run compileDots && npm run test:unit:launcher && npm run test:spec:launcher && npm run test:bdd:launcher",
"test:unit": "npm run compileDots && npm run test:unit:launcher",
"test:unit:launcher": "mocha --config .unit.mocharc.js",
"test:spec": "npm run compileDots && npm run test:spec:launcher",
"test:spec:launcher": "mocha --config .spec.mocharc.js",
"test:bdd": "npm run compileDots && npm run test:bdd:launcher",
"test:bdd:launcher": "NODE_ENV=test cucumber-js --require-module=ts-node/register/transpile-only --require 'tests/features/step_definitions/**/*.step.ts' -f summary tests/features",
"coverage": "nyc npm test",
"coverage-coveralls": "cat coverage/lcov.info | coveralls",
"travis-coverage": "npm run build && npm run coverage && npm run coverage-coveralls",
"compileDots": "ts-node src/compiler/dot/compileDots.script.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertossilva/flowie.git"
},
"keywords": [
"flow",
"etl",
"parsing",
"flow based programming"
],
"author": "Alberto Silva <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/albertossilva/flowie/issues"
},
"homepage": "https://github.com/albertossilva/flowie#readme",
"types": "dist/index.d.ts",
"tsd": {
"directory": "src",
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"outDir": "dist",
"sourceMap": true,
"target": "es2020",
"noImplicitReturns": true,
"strict": false
}
},
"dependencies": {
"debug": "^4.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/cucumber": "^6.0.1",
"@types/debug": "^4.1.5",
"@types/dot": "^1.1.4",
"@types/faker": "^4.1.12",
"@types/js-beautify": "^1.11.0",
"@types/lodash.get": "^4.4.6",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@types/sinon": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"cucumber": "^6.0.5",
"del": "^5.1.0",
"dot": "^1.1.3",
"eslint": "^7.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"faker": "^5.1.0",
"js-beautify": "^1.13.0",
"lodash.get": "^4.4.2",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"sinon": "^9.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}