-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
74 lines (74 loc) · 1.64 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
{
"name": "haikunator",
"description": "Generate Heroku-like random names to use in your node applications.",
"version": "2.1.2",
"author": "Atrox <mail@atrox.me>",
"homepage": "https://github.com/Atrox/haikunatorjs",
"keywords": [
"generator",
"haikunate",
"haikunator",
"heroku",
"heroku-like",
"names",
"random"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/Atrox/haikunatorjs"
},
"bugs": {
"url": "https://github.com/Atrox/haikunatorjs/issues"
},
"scripts": {
"build": "pika build",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"@types/random-seed": "^0.3.3",
"lodash.defaults": "^4.2.0",
"random-seed": "^0.3.0"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-bundle-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@types/jest": "^29.5.10",
"@types/lodash.defaults": "^4.2.5",
"babel-plugin-add-module-exports": "^1.0.0",
"jest": "^29.7.0",
"standard": "^17.0.0",
"ts-jest": "^29.1.1",
"tslint": "^6.0.0",
"typescript": "^5.3.2"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-types"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-bundle-web"
]
]
}
}