-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.38 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
{
"name": "defunctr",
"title": "Defunctr",
"description": "JavaScript library for web browser detection by feature detection.",
"version": "1.3.2-beta.2",
"cdn": "dist/defunctr.js",
"main": "dist/defunctr.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"homepage": "https://github.com/cinecove/defunctr",
"author": {
"name": "Cinecove Digital, LLC and other contributors",
"url": "https://github.com/cinecove/defunctr/blob/master/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "https://github.com/cinecove/defunctr.git"
},
"keywords": [
"defunctr",
"javascript",
"browser",
"library",
"detection",
"html5",
"shiv",
"modernizr"
],
"bugs": {
"url": "https://github.com/cinecove/defunctr/issues"
},
"license": "MIT",
"licenseUrl": "https://github.com/cinecove/defunctr/blob/master/LICENSE.md",
"dependencies": {
"modernizr": "^3.5.0"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"babelrc-rollup": "^3.0.0",
"bower": "^1.8.2",
"chai": "^4.1.1",
"eslint": "^4.12.0",
"flow": "^0.2.3",
"gulp": "^3.9.1",
"gulp-banner": "^0.1.3",
"gulp-bump": "^2.8.0",
"gulp-nuget-pack": "0.0.7",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sequence": "^0.4.6",
"gulp-strip-comments": "^2.5.1",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"pump": "^1.0.3",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-istanbul": "^1.0.0",
"rollup-watch": "^4.3.1"
},
"files": [
"lib",
"dist"
],
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c && gulp",
"release": "rollup -c && gulp release",
"bump": "gulp bump",
"bumpbeta": "gulp bump-beta",
"bumpminor": "gulp bump-minor",
"bumpmajor": "gulp bump-major",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "mocha \"./{,!(node_modules)/**/}*.test.js\"",
"prepublish": "npm test"
},
"contributors": [
{
"name": "Victoria French",
"url": "https://twitter.com/victoriafrench"
}
]
}