-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.74 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
{
"name": "whoami.js",
"version": "1.2.2",
"description": "A simple and lightweight browser detection and logger library",
"main": "dist/whoami.min.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"lint": "eslint src test server",
"spec": "./node_modules/karma/bin/karma start",
"test": "npm run lint && npm run spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andersonba/whoami.js.git"
},
"keywords": [
"feedback",
"screenshot",
"printscreen",
"capture",
"browser",
"identifier"
],
"author": "Anderson de Oliveira <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andersonba/whoami.js/issues"
},
"homepage": "https://github.com/andersonba/whoami.js#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"browser-sync": "^2.18.7",
"browser-sync-webpack-plugin": "^1.1.4",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"karma": "1.4.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserstack-launcher": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"webpack": "^2.2.1"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"mocha": true,
"es6": true
},
"globals": {
"whoami": true,
"expect": true,
"sinon": true,
"ActiveXObject": true
}
}
}