-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "bugz",
"version": "0.1.2",
"description": "Composable User Agent Detection",
"main": "bundle/bugz.umd.js",
"module": "bundle/bugz.module.js",
"jsnext:main": "bundle/bugz.module.js",
"scripts": {
"start": "npm run test -- --watch",
"test": "jest",
"build": "npm run clean && npm run copy && npm run build:index && npm run build:bundle && npm run build:cjs",
"clean": "rm -rf dist",
"copy": "mkdir -p dist && cp package.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
"build:bundle": "rollup --config",
"build:cjs": "babel src --ignore __tests__ --out-dir dist",
"build:index": "babel-node scripts/generateIndex.js > src/index.js",
"format": "prettier --single-quote --write src/*.js src/**/*.js test/*.js test/**/*.js scripts/*.js scripts/**/*.js",
"lint": "eslint src/** test/** scripts/**"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"user-agent",
"detection",
"browser",
"engine",
"os",
"device",
"functional",
"composable",
"bugs",
"ramda"
],
"repository": {
"type": "git",
"url": "https://github.com/richardscarrott/bugz.git"
},
"author": {
"name": "Richard Scarrott",
"email": "riscarrott@googlemail.com"
},
"license": "MIT",
"dependencies": {
"ua-parser-js": "^0.7.12"
},
"peerDependencies": {
"ramda": "*"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-jest": "^18.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babelrc-rollup": "^3.0.0",
"coveralls": "^2.11.15",
"eslint": "^3.14.1",
"jest": "^18.1.0",
"prettier": "^0.11.0",
"ramda": "^0.23.0",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0"
}
}