-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "@prakashraman/notes",
"version": "0.6.6",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "npx mocha --require ts-node/register 'test/**/*.ts'",
"coverage": "npx nyc --report-dir=coverage --reporter=lcov --reporter=text npm run test",
"codecov": "npm run coverage && bash ./scripts/codecov.sh",
"build": "npx tsc",
"postbuild": "npx cpy '**/*' '!**/*.ts' '../build/' --cwd=src --parents",
"doc": "npx typedoc --out docs src",
"dev": "npx ts-node src/index.ts",
"dev:setup": "npx ts-node src/scripts/setup.ts",
"dev:note": "npx ts-node src/scripts/note.ts",
"dev:build": "npx ts-node src/scripts/build.ts"
},
"bin": {
"pr-notes": "./build/index.js"
},
"author": "Prakash Raman <[email protected]> (http://prakashraman.info)",
"license": "GNU GPLv3",
"dependencies": {
"@types/figlet": "^1.2.0",
"@types/inquirer": "^7.3.1",
"@types/showdown": "^1.9.3",
"cpy": "^8.1.1",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"date-fns": "^2.16.1",
"figlet": "^1.5.0",
"handlebars": "^4.7.6",
"inquirer": "^7.3.3",
"moment": "^2.29.1",
"showdown": "^1.9.1",
"slugify": "^1.4.5",
"string-strip-html": "^6.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/sinon": "^9.0.7",
"chai": "^4.2.0",
"cpy-cli": "^3.1.1",
"mocha": "^8.1.3",
"mock-fs": "^4.13.0",
"nyc": "^15.1.0",
"prettier": "2.1.2",
"release-it": "^14.2.0",
"sinon": "^9.1.0",
"typedoc": "^0.19.2"
}
}