This repository has been archived by the owner on Aug 7, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
103 lines (103 loc) · 3.05 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
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
100
101
102
103
{
"name": "nativescript-dev-webpack",
"version": "1.5.0",
"main": "index",
"description": "",
"homepage": "http://www.telerik.com",
"bugs": "http://www.telerik.com",
"contributors": [
"Hristo Deshev <[email protected]>"
],
"nativescript": {
"hooks": [
{
"type": "after-prepare",
"script": "lib/after-prepare.js",
"inject": true
},
{
"type": "before-checkForChanges",
"script": "lib/before-checkForChanges.js",
"inject": true
}
]
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-dev-webpack.git"
},
"scripts": {
"tsc": "tsc",
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js",
"postpack": "rm -rf node_modules",
"prepare": "npm run tsc && npm run jasmine",
"test": "npm run prepare",
"jasmine": "jasmine --config=jasmine-config/jasmine.json",
"coverage": "nyc npm run test",
"version": "rm package-lock.json && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"bin": {
"install-ns-webpack": "./bin/install-ns-webpack",
"remove-ns-webpack": "./bin/remove-ns-webpack",
"update-ns-webpack": "./bin/update-ns-webpack",
"ns-bundle": "./bin/ns-bundle",
"ns-verify-bundle": "./bin/ns-verify-bundle",
"generate-android-snapshot": "./bin/generate-android-snapshot"
},
"dependencies": {
"@angular-devkit/core": "8.2.0",
"clean-webpack-plugin": "~1.0.0",
"copy-webpack-plugin": "~4.6.0",
"css": "2.2.1",
"css-loader": "~2.1.1",
"escape-string-regexp": "1.0.5",
"fork-ts-checker-webpack-plugin": "2.0.0",
"global-modules-path": "2.0.0",
"loader-utils": "^1.2.3",
"minimatch": "3.0.4",
"nativescript-hook": "0.2.4",
"nativescript-worker-loader": "~0.10.0",
"properties-reader": "0.3.1",
"proxy-lib": "0.4.0",
"raw-loader": "~0.5.1",
"request": "2.88.0",
"resolve-url-loader": "~3.0.0",
"sass-loader": "~7.1.0",
"sax": "^1.2.4",
"schema-utils": "0.4.5",
"semver": "^6.0.0",
"shelljs": "~0.8.4",
"tapable": "1.0.0",
"terser": "3.17.0",
"terser-webpack-plugin": "1.2.3",
"ts-loader": "^5.3.1",
"webpack": "~4.27.0",
"webpack-bundle-analyzer": "~3.3.2",
"webpack-cli": "~3.1.1",
"webpack-sources": "~1.3.0"
},
"devDependencies": {
"@angular/compiler": "8.2.0",
"@angular/compiler-cli": "8.2.0",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@ngtools/webpack": "8.2.0",
"@types/css": "0.0.31",
"@types/jasmine": "^3.3.7",
"@types/loader-utils": "^1.1.3",
"@types/node": "^10.12.12",
"@types/proxyquire": "1.3.28",
"@types/sax": "^1.2.0",
"@types/semver": "^6.0.0",
"@types/webpack": "^4.4.34",
"conventional-changelog-cli": "^1.3.22",
"jasmine": "^3.2.0",
"jasmine-spec-reporter": "^4.2.1",
"nyc": "^14.1.1",
"proxyquire": "2.1.0",
"source-map-support": "^0.5.13",
"tns-core-modules": "next",
"typescript": "~3.5.3"
}
}