-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "ngdatasheet",
"version": "0.6.0",
"description": "Simple, lightweight datasheet component for Angular 2.",
"main": "index.js",
"scripts": {
"prepublish": "tsc",
"build:watch": "tsc -w",
"test": "concurrently \"npm run build:watch\" \"karma start karma.conf.js\"",
"test:only": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buoyad/ngDatasheet.git"
},
"keywords": [
"angular",
"angular2",
"datasheet",
"datatable"
],
"author": "Daniel Ayoub <daniel@ayoubd.com> (http://ayoubd.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/buoyad/ngDatasheet/issues"
},
"homepage": "https://buoyad.github.io/ngDatasheet/",
"dependencies": {
"@angular/common": "^4.0.1",
"@angular/compiler": "^4.0.1",
"@angular/core": "^4.0.1",
"@angular/forms": "^4.0.1",
"@angular/http": "^4.0.1",
"@angular/platform-browser": "^4.0.1",
"@angular/platform-browser-dynamic": "^4.0.1",
"@angular/router": "^4.0.1",
"mathjs": "^3.12.0",
"rxjs": "^5.3.0",
"typescript": "^2.2.2",
"zone.js": "^0.8.5"
},
"devDependencies": {
"@types/jasmine": "2.5.36",
"@types/mathjs": "0.0.34",
"@types/node": "^6.0.46",
"canonical-path": "0.0.2",
"concurrently": "^3.4.0",
"jasmine-core": "^2.4.1",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-typescript": "^3.0.1",
"lodash": "^4.16.4",
"protractor": "~4.0.14",
"rimraf": "^2.5.4",
"tslint": "^3.15.1",
"typescript": "~2.1.0"
}
}