-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.66 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
{
"name": "loremicon",
"version": "0.9.4",
"description": "",
"repository": {
"url": "https://github.com/hn3000/loremicon",
"type": "git"
},
"main": "index.js",
"scripts": {
"prestart": "tsc -p tsconfig.json",
"start": "node out/index",
"tsc": "tsc -p tsconfig.json",
"prebuild": "tsc -p tsconfig.json",
"build": "webpack -c webpack.config.js",
"webpack": "webpack-dev-server -c webpack.dev.js",
"docker": "docker build . -t loremicon",
"docker:node-latest": "docker build . -f dockerfile.latest -t loremicon:node-latest",
"predocker-run": "npm run test",
"docker-run": "docker-compose up -d --build",
"pretest": "tsc -p tsconfig.test.json",
"test": "node out-test/test/all-tests",
"cover": "nyc npm test"
},
"keywords": [
"lorem image",
"lorem icon",
"loremicon",
"http",
"rest",
"api"
],
"author": "Harald Niesche",
"license": "MIT",
"dependencies": {
"canvas": "^2.6.1",
"express": "^4.17.1",
"full-icu": "^1.3.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.5.0",
"nyc": "^15.1.0",
"ts-loader": "^8.0.12",
"tsunit.external": "^2.1.1",
"typescript": "^4.1.3",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.0.0-beta.0"
},
"nyc": {
"all": true,
"excludeAfterRemap": false,
"extension": [
".js",
".ts"
],
"include": [
"out-test/src/**",
"src/*.ts"
],
"exclude": [
"test/**",
"out-test/test/**"
],
"reporter": [
"text",
"html",
"lcov"
]
}
}