-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.29 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
{
"name": "@projectlint/tasks-engine",
"version": "0.0.0",
"description": "Rules engine for projectlint, a style checker and lint tool for (Node.js) projects",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "babel src --out-dir .",
"pretest": "npm run lint",
"test": "jest --coverage --notify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projectlint/tasks-engine.git"
},
"keywords": [
"lint",
"linter",
"project",
"node",
"nodejs",
"node.js",
"npm",
"python",
"test",
"tests",
"error",
"errors",
"hierarchy",
"documentation",
"automation"
],
"author": "Jesús Leganés-Combarro 'piranna' <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/projectlint/tasks-engine/issues"
},
"homepage": "https://github.com/projectlint/tasks-engine#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"eslint": "^6.8.0",
"jest-cli": "^25.5.4",
"prettier": "^2.0.5"
},
"jest": {
"collectCoverageFrom": [
"src/*.js"
]
},
"dependencies": {
"core-js": "^3.6.5"
}
}