-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "@devonfw/ts-merger",
"version": "2.2.9",
"description": "2-way TypeScript Merger",
"author": {
"name": "devonfw team",
"url": "https://www.devonfw.com/"
},
"contributors": [
"Ruben Diaz Martinez <[email protected]>",
"Malte Brunnlieb <[email protected]>",
"Steffen Holzer <[email protected]>",
"Mohamed Ghanmi <[email protected]>"
],
"main": "build/index.js",
"scripts": {
"preinstall": "use-yarn || ( npm install --no-scripts --no-save use-yarn && use-yarn )",
"build": "tsc",
"dev": "tsc -w",
"test": "mocha-webpack --webpack-config webpack.config.js \"test/**/*_test.ts\"",
"test-watch": "mocha-webpack --webpack-config webpack.config.js --watch \"test/**/*_test.ts\"",
"prepublish": "npm run build && npm run test && npm run bundle",
"bundle": "webpack --define process.env.NODE_ENV=\"production\""
},
"keywords": [
"TypeScript",
"2-way-merge"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.22",
"chai": "^3.5.0",
"cpx": "^1.5.0",
"mocha": "^3.2.0",
"mocha-webpack": "1.1.0",
"source-map-support": "0.4.3",
"ts-loader": "^2.1.0",
"tslint": "^5.5.0",
"tslint-language-service": "^0.9.6",
"typescript": "^3.4.1",
"webpack": "^3.4.1"
},
"dependencies": {
"global": "^4.4.0",
"ts-node": "^8.0.2"
},
"directories": {
"test": "test"
},
"files": [
"src/",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devonfw/ts-merger.git"
},
"bugs": {
"url": "https://github.com/devonfw/ts-merger/issues"
},
"homepage": "https://github.com/devonfw/ts-merger"
}