-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "ts-loader-declaration-export-plugin",
"version": "1.0.2",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ppsirius/ts-loader-declaration-export-plugin"
},
"keywords": [
"typescript",
"declaration",
"export",
"ts-loader"
],
"scripts": {
"dev": "babel --watch src --out-dir dist --extensions '.ts,.tsx'",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"test": "jest",
"publish": "npm run test && npm run build && npm publish"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@types/webpack": "^4.41.7",
"babel-plugin-add-module-exports": "^1.0.2",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0"
}
}