-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 KB
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
{
"name": "scriptablemc-typescript",
"version": "1.2.1",
"description": "Typescript plugin example and libraries for Minecraft 1.15",
"main": "src/main.js",
"directories": {
"doc": "docs",
"lib": "lib",
"bin": "dist"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "npx typedoc --exclude \"**/*.js\" --categorizeByGroup true --name \"ScriptableMC-TypeScript\" --mode modules --includeDeclarations --excludeNotExported --excludePrivate --excludeProtected --excludeExternals --out docs src",
"compile": "npx tsc",
"postcompile": "npx copyfiles -u 1 \"src/**/*.json\" \"dist\"",
"watch": "npx tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astorks/ScriptableMC-TypeScript.git"
},
"author": "Ashton Storks",
"license": "ISC",
"bugs": {
"url": "https://github.com/astorks/ScriptableMC-TypeScript/issues"
},
"homepage": "https://github.com/astorks/ScriptableMC-TypeScript#readme",
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"copyfiles": "^2.2.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"typedoc": "^0.16.8",
"typescript": "^3.7.5"
}
}