forked from mariuszfoltak/angular2-datatable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 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
{
"name": "angular2-datatable",
"version": "0.4.2",
"description": "DataTable component for Angular2 framework",
"main": "datatable",
"scripts": {
"postinstall": "cd src && typings install",
"watch": "tsc -p src -w",
"prebuild": "rm -rf lib",
"build": "tsc -p src",
"start": "http-server -c-1 -o -p 8875 .",
"pretest": "npm run build",
"test": "karma start karma.conf.js",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/coverage-final.json -o coverage -t html",
"coverage-remap": "remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.lcov -t lcovonly",
"coverage": "http-server -c-1 -o -p 9875 ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mariuszfoltak/angular2-datatable.git"
},
"keywords": [
"angular",
"angularjs",
"angular2",
"ng",
"ng2",
"table",
"pagination",
"sort",
"sorting"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mariuszfoltak/angular2-datatable/issues"
},
"homepage": "https://github.com/mariuszfoltak/angular2-datatable#readme",
"devDependencies": {
"@angular/core": "^2.0.0-rc.0",
"@angular/platform-browser": "^2.0.0-rc.0",
"es6-shim": "^0.35.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"lodash": "^4.0.0",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "^0.1.3",
"remap-istanbul": "^0.6.3",
"rxjs": "^5.0.0-beta.6",
"systemjs": "^0.19.27",
"traceur": "0.0.108",
"typescript": "^1.8.10",
"typings": "^0.8.1",
"zone.js": "^0.6.12"
},
"peerDependencies": {
"@angular/core": "^2.0.0-rc.0",
"lodash": "^4.0.0",
"rxjs": "^5.0.0-beta.6"
}
}