This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
131 lines (131 loc) · 3.51 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "act-rules-implementation-mapper",
"version": "2.0.0",
"description": "Mapper for condensing ACT Rules Implementations to be a consumable data for ACT Rules Website",
"main": "./dist/act-map-generator.js",
"bin": {
"act-map-generator": "./dist/bin/act-map-generator-cli.js"
},
"scripts": {
"test": "jest --coverage && npm run lint",
"test:watch": "jest --watch",
"start": "npm run build:live",
"postinstall": "npm run build",
"build": "tsc",
"build:live": "nodemon --watch 'src/**/*.ts'",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"prettier": "npm run prettier:write",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.ts\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/act-rules/act-rules-implementation-mapper.git"
},
"author": "Wilco fiers",
"license": "ISC",
"bugs": {
"url": "https://github.com/act-rules/act-rules-implementation-mapper/issues"
},
"homepage": "https://github.com/act-rules/act-rules-implementation-mapper#readme",
"dependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "24.0.0",
"@types/jsonld": "^1.5.0",
"@types/node": ">=4.2.0 < 13",
"@types/request-promise": "^4.1.44",
"@types/yargs": "^13.0.3",
"debug": "^4.1.1",
"globby": "^10.0.1",
"jest": "24.0.0",
"jsonld": "^1.8.0",
"request-promise": "^4.2.5",
"typescript": "^3.6.3",
"yargs": "^14.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/eslint": "^6.1.2",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.5.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/bin/*.ts",
"!src/__test-utils/*"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 80,
"functions": 90,
"lines": 90
}
}
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/consistent-type-assertions": 1
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,css,md,html}": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "es5",
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "avoid"
}
}