-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 863 Bytes
/
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
{
"name": "@wenye123/hello",
"version": "1.1.0",
"description": "typescript版本的hello world",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"compile": "rm -rf dist && tsc",
"prepublish": "npm run compile",
"test": "mocha --require ts-node/register test/test-index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wenye123/hello.git"
},
"keywords": [
"typescript",
"hello-world"
],
"author": "wenye <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wenye123/hello/issues"
},
"homepage": "https://github.com/wenye123/hello#readme",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.12",
"mocha": "^6.1.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}