-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
package.json
87 lines (87 loc) · 2.23 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
{
"name": "mediaelement",
"license": "MIT",
"version": "7.0.5",
"main": "full.js",
"repository": {
"type": "git",
"url": "https://github.com/mediaelement/mediaelement.git"
},
"bugs": {
"url": "https://github.com/mediaelement/mediaelement/issues?q=is%3Aissue+is%3Aopen+label%3ABug"
},
"private": false,
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-derequire": "^0.9.4",
"bundle-collapser": "^1.2.1",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"cssnano": "^3.8.0",
"grunt": "^1.6.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^3.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^19.0.0",
"grunt-postcss": "^0.9.0",
"grunt-remove-logging": "^0.2.0",
"grunt-shell": "^2.1.0",
"grunt-stylelint": "^0.8.0",
"grunt-text-replace": "^0.4.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.12.0",
"mocha": "^3.4.1",
"mocha-jsdom": "^1.1.0",
"promise-polyfill": "6.0.2",
"stylelint": "^7.10.1",
"stylelint-order": "^0.4.4",
"uglify-js": "^3.0.10"
},
"dependencies": {
"global": "^4.3.1",
"svg4everybody": "^2.1.9"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-register --require babel-polyfill --recursive test/unit",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"browserify": {
"extensions": [
".js"
],
"transform": [
[
"babelify",
{
"comments": false,
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 5 versions",
"ie > 10",
"ios > 7",
"android > 3"
]
}
}
]
]
}
]
]
}
}