-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "browserama",
"version": "3.2.2",
"description": "A browser detection package that uses feature detection instead of user agent",
"main": "out/browserama.min.js",
"files": [
"index.js",
"out"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"lint": "semistandard",
"build": "rollup --config rollup.config.js && node copy-files.js",
"prepublish": "npm run build && npm run test",
"_test": "echo \"The linter passed, but since tests need to run in a browser, run npm run test-server to test manually\"",
"test-server": "open http://localhost:8080/test && stupid-server",
"test": "npm run lint && npm run _test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mypurecloud/browserama.git"
},
"keywords": [
"browser",
"detect",
"detection"
],
"author": "Xander Dumaine <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mypurecloud/browserama/issues"
},
"homepage": "https://github.com/mypurecloud/browserama#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-uglify": "^2.0.1",
"semistandard": "^12.0.1"
}
}