-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
package.json
129 lines (129 loc) · 3.98 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "ui-grid",
"version": "4.12.7",
"description": "A data grid for Angular",
"directories": {
"test": "test"
},
"main": "./index.js",
"scripts": {
"bootstrap": "lerna bootstrap",
"pre-build": "grunt clean",
"build": "grunt build",
"wbpack-build": "npm run pre-build && webpack && npm run less && lerna run build && npm run post-build",
"post-build": "grunt uidocs-generator copy:site copy:font_dist copy:less_customizer copy:less_dist copy:packages_dist copy:packages_publish",
"less": "npm run less-main && npm run less-min",
"less-main": "lessc -rp=\"../\" ./lib/less/main.less dist/release/css/ui-grid.css",
"less-min": "lessc -rp=\"../\" --compress -x ./lib/less/main.less dist/release/css/ui-grid.min.css",
"bump": "lerna version --conventional-commits --no-push --no-git-tag-version",
"bump-commit": "grunt bump",
"changed": "lerna changed",
"clean": "lerna clean && grunt clean",
"commit": "git-cz",
"e2e": "grunt test:ci-e2e",
"init": "validate-commit-msg",
"lerna": "lerna",
"lint": "eslint packages/*/src/**/*.js packages/*/test/**/*.spec.js test/**/*.spec.js",
"postinstall": "bower install",
"pre-release": "grunt release",
"release": "lerna publish from-package",
"start": "grunt dev --fast",
"test": "grunt test",
"webdriver-manager": "webdriver-manager"
},
"repository": {
"type": "git",
"url": "https://github.com/angular-ui/ui-grid.git"
},
"keywords": [
"angular",
"ng-grid",
"nggrid",
"grid",
"angularjs",
"slickgrid",
"kogrid",
"ui-grid",
"ui grid",
"data grid"
],
"author": "UI Grid Team",
"homepage": "http://ui-grid.info/",
"license": "MIT",
"devDependencies": {
"adm-zip": "^0.4.11",
"bower": "^1.8.8",
"canonical-path": "0.0.2",
"coveralls": "^3.0.6",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^8.24.0",
"git-cz": "^3.2.1",
"grunt": "^1.0.4",
"grunt-angular-templates": "^1.2.0",
"grunt-bump": "^0.8.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^4.0.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-gh-pages": "^4.0.0",
"grunt-karma": "^4.0.2",
"grunt-newer": "^1.3.0",
"grunt-protractor-runner": "^5.0.0",
"grunt-replace": "^2.0.2",
"grunt-shell-spawn": "^0.4.0",
"grunt-uidocs-generator": "^0.7.0",
"hoek": "^5.0.3",
"husky": "^0.14.3",
"jasmine-core": "^2.4.1",
"jit-grunt": "^0.10.0",
"karma": "^6.3.14",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage": "^2.0.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "~1.1.0",
"karma-jasmine": "^1.1.2",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-requirejs": "~1.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-script-launcher": "~1.0.0",
"lerna": "^5.5.4",
"less": "^3.8.0",
"less-loader": "^11.1.0",
"load-grunt-config": "^3.0.1",
"lodash": "^4.17.20",
"marked": "^0.7.0",
"mini-css-extract-plugin": "^2.6.1",
"protractor": "^5.4.0",
"puppeteer": "^19.6.0",
"requirejs": "^2.3.6",
"selenium-server-standalone-jar": "^3.13.0",
"selenium-webdriver": "^3.6.0",
"semver": "^5.5.0",
"shelljs": "^0.8.2",
"text-loader": "^0.0.1",
"time-grunt": "^1.4.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"validate-commit-message": "^3.0.1",
"webdriver-manager": "^12.1.7",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg",
"post-merge": "npm install",
"post-rewrite": "npm install"
}
}
}