-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 3 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 3 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
{
"name": "@floip/flow-runner",
"version": "1.0.12-rc4.20",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "git@github.com:FLOIP/flow-runner.git",
"author": "bzabos <b.zabos@gmail.com>",
"license": "MIT",
"preferUnplugged": true,
"scripts": {
"jsonschema:generate-container": "mkdir -p ./dist/resources/validationSchema/current && ./node_modules/.bin/ts-json-schema-generator --type IContainer --tsconfig 'tsconfig.json' --out 'dist/resources/validationSchema/current/flowSpecJsonSchema.json'",
"jsonschema:generate-blocks": "mkdir -p ./dist/resources/validationSchema/current && node scripts/jsonschema-generate-blocks.js",
"jsonschema:copy-rc4": "cp dist/resources/validationSchema/current/* dist/resources/validationSchema/1.0.0-rc4",
"build": "tsc --declaration; yarn jsonschema:generate-container && yarn jsonschema:generate-blocks && (mkdir -p dist/resources/validationSchema/1.0.0-rc4 || true) && yarn jsonschema:copy-rc4",
"clean": "rm -f tsconfig.tsbuildinfo && rm -rf dist/__tests__ && rm -rf dist/domain && rm -rf dist/flow-spec && rm -rf dist/model",
"deploy": "yarn version --minor",
"deploy-rc": "yarn version --prerelease",
"preversion": "yarn clean && yarn build && git add dist/ && git commit -m \"Build + package for release.\"",
"postversion": "git push origin --tags HEAD",
"test": "yarn tsc-test && yarn jest",
"tsc-test": "tsc --project . --noEmit",
"upgrade-ts": "yarn upgrade typescript eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser @typescript-eslint/typescript-estree"
},
"dependencies": {
"@floip/expression-evaluator": "^2.1.3",
"ajv": "^7.2.1",
"ajv-formats": "^1.5.1",
"class-transformer": "^0.3.1",
"lodash": "^4.17.20",
"reflect-metadata": "^0.1.13",
"sp2": "^1.6.3",
"ts-json-schema-generator": "^0.89.0",
"tslib": "^2.0.1",
"uuid": "^3.3.2",
"yaml-import": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.1",
"@types/jest": "^26.0.10",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.160",
"@types/node": "^14.6.0",
"@types/uuid": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@typescript-eslint/typescript-estree": "^4.18.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"tsc": "^1.20150623.0",
"typescript": "^4.2.3",
"violation-comments-to-github-command-line": "^1.19.0"
},
"packageManager": "yarn@3.3.0",
"stableVersion": "1.0.12-rc4.16"
}