forked from InfomediaLtd/ag-grid-ng2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
{
"name": "ag-grid-angular",
"version": "16.0.0",
"description": "ag-Grid Angular Component",
"main": "main.js",
"typings": "main.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"verify-properties": "node agGridPropertiesCheck.js",
"build": "npm run clean && npm run build-no-verify && npm run verify-properties",
"build-gulp": "npm run build-no-verify-gulp && npm run verify-properties",
"build-no-verify": "ngc -p tsconfig-src.json && npm run clean-src && ngc -p tsconfig-main.json && rimraf aot",
"build-no-verify-gulp": "ngc -p tsconfig-gulp.json",
"clean-src": "rimraf src/*.d.ts src/*.js*",
"clean-main": "rimraf main.metadata.json && rimraf main.js* && rimraf main.d.ts && rimraf aot",
"clean": "rimraf aot/* && rimraf dist/* && npm run clean-main",
"clean-build": "npm run clean && npm run build",
"clean-build-no-verify": "npm run clean && npm run build-no-verify",
"release": "npm run clean-build"
},
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/ag-grid-angular.git"
},
"keywords": [
"grid",
"data",
"table",
"angular"
],
"author": "Niall Crosby <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ag-grid/ag-grid-angular/issues"
},
"homepage": "http://www.ag-grid.com/",
"devDependencies": {
"del": "2.2.x",
"gulp": "3.9.x",
"gulp-header": "1.8.x",
"gulp-ngc": "0.1.x",
"gulp-typescript": "3.1.x",
"merge2": "0.3.6",
"rimraf": "2.5.x",
"run-sequence": "1.2.x",
"typescript": "2.2.x",
"gulp-rename": "1.2.2",
"@angular/compiler": ">=2.1.x - 4.x",
"@angular/compiler-cli": "2.1.x - 4.x",
"@angular/core": "2.1.x - 4.x",
"rxjs": ">=5.0.0-beta.12",
"zone.js": ">=0.6.x",
"core-js": "^2.4.1"
},
"peerDependencies": {
"ag-grid": "^16.0.0",
"@angular/compiler": ">=2.1.x",
"@angular/compiler-cli": ">=2.1.x",
"@angular/core": ">=2.1.x",
"rxjs": ">=5.0.0-beta.12",
"zone.js": ">=0.6.x",
"core-js": "^2.4.1"
}
}