forked from hjalmers/angular-generic-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.6 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
{
"name": "angular-generic-table",
"version": "4.4.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hjalmers/angular-generic-table.git"
},
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "ng serve",
"lint": "tslint \"src/**/*.ts\" --project src/tsconfig.json --type-check && tslint \"e2e/**/*.ts\" --project e2e/tsconfig.json --type-check",
"test": "ng test",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "protractor",
"build:css": "node-sass --source-map true --include-path scss src/generic-table/generic-table.scss generic-table/css/generic-table-prebuild.css",
"autoprefix:css": "postcss -u autoprefixer -r generic-table/css/generic-table-prebuild.css",
"minify:css": "cleancss -o generic-table/css/generic-table-prebuild.min.css generic-table/css/generic-table-prebuild.css --source-map",
"compile:css": "npm run build:css && npm run autoprefix:css && npm run minify:css",
"rename:css": "renamer --find \"generic-table-prebuild\" --replace \"generic-table\" generic-table/css/*",
"copy:scss": "copyfiles -f src/generic-table/generic-table.scss generic-table/scss",
"clean": "rimraf generic-table \"index.@(js|js.map|d.ts|metadata.json|ngsummary.json)\"",
"clean:factory": "rimraf \"generic-table/**/*.ngfactory.ts\"",
"prebuild": "npm run -s clean",
"build": "ngc -p src/tsconfig-aot.json && npm run copy:scss && npm run compile:css && npm run rename:css",
"postbuild": "npm run -s clean:factory",
"prepublish": "npm run -s build",
"postpublish": "npm run -s clean",
"publish:core": "onpm ./@angular-generic-table/core run publish-package",
"publish:column-settings": "onpm ./@angular-generic-table/column-settings run publish-package",
"publish:all": "npm run publish:core && npm run publish:column-settings",
"build:all": "onpm ./@angular-generic-table/core run build && onpm ./@angular-generic-table/column-settings run build"
},
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "index.js",
"peerDependencies": {
"@angular/core": "^4.0.0",
"@angular/common": "^4.0.0"
},
"devDependencies": {
"@angular/cli": "^1.0.0",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-beta.1",
"@ngx-translate/core": "^6.0.0",
"@ngx-translate/http-loader": "0.0.3",
"@types/jasmine": "2.5.38",
"@types/node": "^6.0.60",
"@types/tether": "^1.4.2",
"angular-exemplify": "^2.0.0",
"autoprefixer": "^6.6.1",
"bootstrap": "^4.0.0-alpha.6",
"clean-css": "^3.4.24",
"codelyzer": "~2.0.0",
"copyfiles": "^1.0.0",
"core-js": "^2.4.1",
"dragula": "^3.7.2",
"jasmine-core": "2.5.2",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ng2-dragula": "^1.3.0",
"node-sass": "^4.3.0",
"othernpm": "^1.1.0",
"postcss-cli": "^2.6.0",
"prismjs": "^1.6.0",
"protractor": "~5.1.0",
"renamer": "^0.6.1",
"rimraf": "^2.5.4",
"rxjs": "^5.1.0",
"ts-helpers": "^1.1.1",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "~2.2.0",
"zone.js": "^0.8.4"
}
}