-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.35 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "typebundle",
"version": "0.12.0",
"description": "A personalized build process for Node.js projects using Babel-compiled TypeScript.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"source": "src/index.js",
"bin": {
"typebundle": "dist/cli.js"
},
"files": [
"src",
"dist",
"types"
],
"scripts": {
"build": "npm run -s build:babel && npm run -s build:self",
"build:babel": "babel-node --extensions \".ts\" src/cli.ts \"src/{cli,index}.ts\" --output=dist --compress --types=types --external=@babel",
"build:self": "node dist/cli.js \"src/{cli,index}.ts\" --output=dist --compress --types=types --external=@babel",
"prerelease": "npm run build",
"release": "np --no-yarn --no-tests",
"test": "npm run -s test:babel && npm run -s build:self",
"test:babel": "babel-node --extensions \".ts\" src/cli.ts \"src/{cli,index}.ts\" --target=current --output=dist --compress --types=types --external=@babel",
"test:self": "node dist/cli.js \"src/{cli,index}.ts\" --target=current --output=dist --compress --types=types --external=@babel",
"watch": "npm run build:babel -- --watch --no-compress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdmurphy/typebundle.git"
},
"keywords": [
"bundle",
"rollup",
"libraries",
"builder",
"typescript"
],
"author": "Ryan Murphy",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdmurphy/typebundle/issues"
},
"homepage": "https://github.com/rdmurphy/typebundle#readme",
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"builtin-modules": "^3.1.0",
"mri": "^1.1.4",
"rollup": "^2.2.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-terser": "^7.0.1",
"tiny-glob": "^0.2.6",
"typescript": "^4.0.2"
},
"devDependencies": {
"@babel/node": "^7.10.5",
"@newswire/prettier-config": "^3.0.0",
"@types/fs-extra": "^9.0.1",
"@types/mri": "^1.1.0",
"@types/node": "^14.6.4",
"np": "^7.0.0",
"prettier": "^2.0.2"
},
"prettier": "@newswire/prettier-config"
}