This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
forked from swimlane/angular-data-table
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
128 lines (128 loc) · 3.89 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
{
"name": "angular-data-table",
"title": "AngularJS Data-Table",
"description": "A feature-rich but lightweight ES6 AngularJS Data Table crafted for large data sets!",
"version": "0.8.0",
"repository": {
"type": "git",
"url": "[email protected]:jonshaffer/angular-data-table.git",
"github": "https://github.com/jonshaffer/angular-data-table.git"
},
"main": "./release/dataTable.js",
"files": [
"release/"
],
"homepage": "http://jonshaffer.github.io/angular-data-table/",
"author": {
"name": "Swimlane",
"email": "[email protected]",
"web": "http://swimlane.com/"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js",
"start-gulp": "gulp serve watch",
"release": "gulp release",
"test": "npm run test && npm run e2e",
"unit": "karma start test/karma.conf.js",
"e2e": "protractor test/protractor.conf.js",
"report-coverage": "codecov",
"lint": "eslint ./*.js ./src/**/*.js ./demos/**/*.js",
"stylelint": "stylelint src/dataTable.less src/themes/*.less src/components/menu/menu.less src/components/popover/popover.less"
},
"peerDependencies": {
"angular": ">=1.4.x <2.0.0"
},
"devDependencies": {
"angular": "1.5.8",
"angular-mocks": "1.5.8",
"babel-core": "^6.9.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-external-helpers": "^6.5.0",
"babel-plugin-rewire": "^1.0.0",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-es2015-modules-amd": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.24.1",
"babelify": "^7.3.0",
"bardjs": "^0.1.8",
"browser-sync": "^2.7.2",
"browserify": "^14.0.0",
"browserify-istanbul": "^2.0.0",
"codecov": "^1.0.1",
"css-loader": "^0.28.1",
"del": "^2.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-protractor": "^1.32.0",
"file-loader": "^0.11.1",
"gulp": "^3.8.11",
"gulp-angular-protractor": "^0.3.0",
"gulp-babel": "6.1.2",
"gulp-changed": "^1.2.1",
"gulp-header": "^1.2.2",
"gulp-less": "^3.0.3",
"gulp-ng-annotate": "^2.0.0",
"gulp-plumber": "^1.0.1",
"gulp-protractor": "^3.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.3",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.8",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"jasmine-core": "^2.5.2",
"karma": "~1.4.1",
"karma-angular": "0.0.6",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.1.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-sauce-launcher": "^1.1.0",
"karma-sinon": "^1.0.5",
"less-loader": "^4.0.3",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.0.2",
"rollup": "^0.41.1",
"run-sequence": "^1.1.0",
"sinon": "^1.17.6",
"style-loader": "^0.17.0",
"stylefmt": "^5.0.3",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.1",
"url-loader": "^0.5.8",
"vinyl-paths": "^2.1.0",
"watchify": "^3.7.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"babel": {
"sourceMaps": false,
"presets": [
"es2015",
"stage-0"
],
"moduleIds": false,
"comments": false,
"compact": false
}
}