-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 799 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 799 Bytes
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
{
"name": "es-module",
"version": "0.0.0",
"private": true,
"description": "ES Module transpiled with TypeScript",
"author": "kevinpollet <pollet.kevin@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/kevinpollet/typescript-es-modules-node-example/tree/master/packages/es-module#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kevinpollet/typescript-node12-modules-example.git"
},
"bugs": {
"url": "https://github.com/kevinpollet/typescript-node12-modules-example/issues"
},
"main": "lib/index.js",
"type": "module",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"prebuild": "npm run clean"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}