-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.63 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
{
"name": "@fchauvel/rpp",
"version": "0.8.0",
"commit": null,
"description": "Rapid Project Planning",
"author": "Franck Chauvel",
"license": "MIT",
"bugs": {
"url": "https://github.com/fchauvel/rpp/issues"
},
"homepage": " https://fchauvel.github.io/rpp/index.html",
"repository": {
"type": "git",
"url": "https://github.com/fchauvel/rpp.git"
},
"keywords": [
"project planning",
"Gantt chart",
"cli",
"lightweight"
],
"main": "./build/src/index.js",
"bin": {
"rpp": "./build/src/index.js"
},
"scripts": {
"test": "jest",
"build": "tsc",
"eslint": "eslint ./**/*.{ts,json} --fix",
"tslint": "tslint -p tsconfig.json --fix",
"lint": "npm run eslint && npm run tslint",
"remark": "remark . -o"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/yargs": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"remark-cli": "^7.0.1",
"remark-lint": "^6.0.5",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"remark-preset-lint-recommended": "^3.0.3"
},
"dependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@fchauvel/quick-check": "^0.1.0",
"@types/node": "^12.12.18",
"babel-jest": "^24.9.0",
"d3": "^5.14.2",
"js-yaml": "^3.13.1",
"jsdom": "^15.2.1",
"typescript": "^3.7.3"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"modulePaths": [
"."
],
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}