-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "myfacts",
"version": "1.2.2",
"description": "Get a random fact from our list",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node dist/test.js",
"build": "tsc",
"prepublish": "npm run build",
"prepare": "npm run build"
},
"directories": {
"lib": "src",
"test": "node dist/test.js",
"build": "tsc",
"prepublish": "npm run build",
"prepare": "npm run build"
},
"files": [
"dist",
"src"
],
"contributors": [
"Ducko <[email protected]>",
"Prits <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SaturnsDevelopment/myfacts.git"
},
"keywords": [
"facts",
"random-facts",
"myfacts"
],
"author": "Ducko#7068",
"license": "MIT",
"bugs": {
"url": "https://github.com/SaturnsDevelopment/myfacts/issues"
},
"homepage": "https://github.com/SaturnsDevelopment/myfacts#readme",
"devDependencies": {
"typescript": "^4.4.4"
}
}