-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "@huskiesio/types",
"version": "0.1.31",
"description": "A package to template lorem ipsum.",
"keywords": [],
"main": "js/index",
"types": "dts/index",
"files": [
"js",
"dts"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && /usr/local/bin/tsc -p tsconfig.json",
"watch": "tsc -w -p .",
"clean": "rm -rf js && rm -rf dts",
"start": "node js/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huskiesio/types.git"
},
"publishConfig": {
"access": "public"
},
"author": "Elijah Cobb <[email protected]> (https://elijahcobb.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/huskiesio/types/issues"
},
"homepage": "https://github.com/huskiesio/types#readme",
"dependencies": {
"@command-socket/core": "0.3.0"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest",
"tslint": "latest",
"jest": "latest",
"@types/jest": "latest"
}
}