forked from rfruesmer/module-structure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.25 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.25 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "module-structure",
"version": "2.0.0",
"description": "Create levelized structure maps from module dependencies.",
"main": "index.js",
"bin": {
"module-structure": "bin/module-structure.js"
},
"scripts": {
"build-dev": "tsc -p . && npm run tslint",
"build-prod": "npm run clean-js && npm run test && npm run clean-dist && npm run build-prod-lib && npm run build-prod-webapp",
"build-prod-lib": "npm run tsc-prod-lib && cpx package.json dist && cpx dist/lib/index.js dist",
"build-prod-webapp": "webpack --config conf/webpack.prod.js --progress --profile --bail",
"clean-dist": "rimraf dist/",
"clean-js": "rimraf src/**/*.js && rimraf src/**/*.js.map && rimraf test/resources/ts/**/*.js && rimraf test/resources/ts/**/*.js.map",
"pretest": "npm run build-dev",
"posttest": "nyc report --reporter=json && codecov -f coverage/*.json",
"publish-how-to": "npm version patch && git push && npm run build-prod && npm publish",
"start-dev-server": "webpack-dev-server --config conf/webpack.dev.js --hot --inline --progress --port 8080",
"start-prod-server": "http-server dist/web-app -o http://localhost:8080?data=module-structure.json",
"test": "nyc mocha test/src/**/*.js",
"tsc-prod-lib": "tsc -p conf/tsconfig.prod.json --outDir dist/lib",
"tsc-test-resources": "tsc -p test/resources/ts",
"tslint": "tslint -c conf/tslint.json --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rfruesmer/module-structure.git"
},
"keywords": [
"amd",
"typescript",
"javascript",
"ecmascript",
"es6",
"c++",
"architecture",
"design",
"dependency",
"dependencies",
"package",
"structure",
"module"
],
"author": "Reinhold Früsmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/rfruesmer/module-structure/issues"
},
"homepage": "https://github.com/rfruesmer/module-structure#readme",
"devDependencies": {
"@types/babylon": "^6.7.15",
"@types/chai": "^4.1.6",
"@types/jquery": "^3.3.17",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.7",
"@types/sinon": "^5.0.5",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"cpx": "^1.5.0",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"mv": "^2.1.1",
"nyc": "^13.1.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"script-loader": "^0.7.0",
"sinon": "^7.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-loader": "^5.2.2",
"tslint": "^5.11.0",
"typescript": "^3.1.3",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"core-js": "^2.4.1",
"fs-extra": "^7.0.0",
"get-installed-path": "^4.0.8",
"http-server": "^0.11.1",
"jquery": "^3.1.1",
"js-plugins": "1.0.0",
"log4js": "^3.0.6",
"opener": "^1.4.2",
"preconditions": "^2.2.0"
}
}