-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "ffme",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.build.json",
"lint": "tslint -p tsconfig.json -c tslint.json",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"test": "jest",
"bundle": "npm run build && nexe ./dist/src/index.js"
},
"author": "Hugo Da Roit <[email protected]> (https://github.com/Yaty)",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"config": "^3.1.0",
"got": "^9.6.0",
"mustache": "^3.0.1",
"puppeteer": "^1.14.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.11",
"@types/config": "0.0.34",
"@types/mustache": "^0.8.32",
"@types/puppeteer": "^1.12.3",
"jest": "^24.7.1",
"nexe": "^3.2.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.16.0",
"typescript": "^3.4.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}