forked from codechavez/angular-inline-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "angular-inline-editors",
"version": "1.0.2",
"private": false,
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"readme": "README.md",
"keywords": [
"angular",
"inline editor",
"click to edit"
],
"author": {
"name": "Victor A Chavez",
"email": "codechavez@outlook.com"
},
"repository": {
"type": "git",
"url": "https://github.com/codechavez/angular-inline-editor.git"
},
"scripts": {
"compile": "tsc --rootDir lib --outDir dist",
"html": "XCOPY /S /y .\\lib\\*.html .\\dist",
"css": "XCOPY /S /y .\\lib\\*.css .\\dist",
"serve": "webpack-dev-server --host localhost --port 3030 --inline --progress",
"distro": "npm run compile && npm run html && npm run css"
},
"dependencies": {
"@angular/common": "^5.1.2",
"@angular/compiler": "^5.1.2",
"@angular/core": "^5.1.2",
"@angular/forms": "^5.1.2",
"@angular/platform-browser": "^5.1.2",
"@angular/platform-browser-dynamic": "^5.1.2",
"core-js": "^2.5.3",
"ngx-bootstrap": "^2.0.2",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.6",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@types/node": "^9.4.5",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.4.1",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"raw-loader": "^0.5.1",
"rollup": "^0.53.0",
"style-loader": "^0.19.1",
"to-string-loader": "^1.1.5",
"ts-loader": "^3.2.0",
"typescript": "^2.7.2",
"uglify-js": "^3.2.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
}
}