forked from andrew-yangy/ng-treetable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.51 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
{
"name": "ng-treetable",
"version": "1.3.3",
"description": "Tree table component for angular 2+.",
"main": "./bundles/ng-treetable.umd.js",
"module": "./ng-treetable.es5.js",
"es2015": "./ng-treetable.js",
"typings": "./ng-treetable.d.ts",
"repository": "[email protected]/ddvkid/ng-treetable.git",
"keywords": [
"angular",
"angular2",
"angular 2",
"angular tree table",
"tree table",
"treetable",
"tree",
"table",
"ng"
],
"author": "Andrew Yang <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf out-tsc dist/*",
"prebuild": "npm run clean",
"build": "node build.js",
"test-watch": "karma start karma.conf.js --no-single-run --auto-watch",
"test": "karma start karma.conf.js --single-run",
"coveralls": "cat ./coverage/lcov/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"preintegration": "npm run clean && npm run build && cd integration && npm install",
"integration": "npm run integration:aot && npm run integration:jit",
"integration:jit": "cd integration && npm run e2e",
"integration:aot": "cd integration && npm run build",
"lint": "tslint --type-check --project ./src/lib/tsconfig.json",
"release": "npm version patch && npm run build && node ./tools/cleanup.js && npm publish ./dist"
},
"dependencies": {},
"devDependencies": {
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"@angular/cli": "1.6.5",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@angularclass/hmr": "~2.1.3",
"@angularclass/hmr-loader": "^3.0.4",
"@types/jasmine": "2.5.36",
"@types/node": "^6.0.96",
"@types/selenium-webdriver": "2.53.39",
"camelcase": "^4.0.0",
"codelyzer": "2.0.0",
"concurrently": "3.2.0",
"core-js": "^2.5.3",
"coveralls": "^2.13.1",
"glob": "^7.1.1",
"jasmine-core": "^2.9.1",
"jasmine-spec-reporter": "^3.2.0",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-mocha-reporter": "^2.0.3",
"karma-remap-istanbul": "0.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "2.0.2",
"node-sass": "^4.7.2",
"null-loader": "0.1.1",
"postcss-loader": "^1.1.0",
"protractor": "^4.0.10",
"reflect-metadata": "^0.1.12",
"remap-istanbul": "^0.6.4",
"rimraf": "^2.6.1",
"rollup": "^0.41.5",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-plugin-uglify": "^1.0.1",
"rxjs": "^5.5.6",
"sass-loader": "^6.0.1",
"shelljs": "^0.7.0",
"standard-version": "^4.3.0",
"ts-helpers": "^1.1.1",
"tslint": "^5.9.1",
"typedoc": "^0.5.1",
"typescript": "^2.7.1",
"zone.js": "^0.8.20"
}
}