-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.33 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
48
49
50
{
"name": "microbundle-ts-pkg",
"description": "A TypeScript npm package skeleton/starter project with microbundle, node:test and prettier",
"version": "0.0.1",
"source": "src/main.ts",
"main": "dist/main.umd.js",
"module": "dist/main.modern.module.js",
"unpkg": "dist/main.umd.js",
"types": "dist/main.d.ts",
"keywords": [
"microbundle",
"typescript"
],
"files": [
"dist/**.js*",
"dist/**/*.ts"
],
"scripts": {
"build": "microbundle --define PKG_VERSION=$npm_package_version",
"watch": "microbundle watch --define PKG_VERSION=$npm_package_version",
"test": "node --test test",
"lint": "prettier src test -c",
"format": "prettier src test --write",
"prepack": "rm -rf dist && npm run build",
"release": "npm run prepack && source .env && npx np"
},
"devDependencies": {
"microbundle": "^0.15.1",
"prettier": "^2.8.8"
},
"prettier": {
"singleQuote": true
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HugoDF/microbundle-ts-pkg.git"
},
"author": "Hugo",
"bugs": {
"url": "https://github.com/HugoDF/microbundle-ts-pkg/issues"
},
"homepage": "https://github.com/HugoDF/microbundle-ts-pkg#readme"
}