-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
{
"name": "@generative-arts/bpmn-art",
"version": "0.0.3",
"description": "BPMN Art",
"keywords": [
"generative-art",
"camunda",
"zeebe"
],
"repository": {
"type": "git",
"url": "https://github.com/generative-arts/bpmn-art"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "ts-node ./src/index.ts",
"try": "ts-node ./src/try.ts",
"build": "tsc --p tsconfig.json",
"dist": "node dist/index.js",
"test": "jest --config jest.config.js --runInBand true",
"lint": "eslint -c .eslintrc.js --fix \"src/**/**.ts\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md,markdown}": [
"prettier --write",
"git add"
],
"*.{json,css,html,yaml,yml}": [
"prettier --write",
"git add"
],
"*.{ts,tsx,jsx}": [
"prettier --write",
"eslint -c .eslintrc.js --fix",
"git add"
]
},
"author": "adam.urban@gmail.com",
"license": "UNLICENSED",
"dependencies": {
"@generative-arts/canvas-kit": "0.0.3",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@types/jasmine": "^3.5.11",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.20",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"node-mocks-http": "^1.8.1",
"nyc": "^15.1.0",
"prettier": "2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}