-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 980 Bytes
/
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
{
"name": "sua.js",
"version": "2.6.1",
"description": "Simple user agent detection library.",
"license": "MIT",
"keywords": [
"browser"
],
"scripts": {
"build": "npm run test && npm run setver && npm run minify",
"setver": "./setver",
"lint": "eslint sua.js",
"minify": "uglifyjs sua.js --comments -m -c unused=false > sua.min.js",
"test": "npm run lint && mocha --recursive tests --timeout 10000 --exit"
},
"homepage": "https://github.com/fkei/sua.js",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/fkei/sua.js/issues"
},
"author": {
"name": "Kei Funagayama",
"email": "[email protected]",
"url": "https://github.com/fkei"
},
"repository": {
"type": "git",
"url": "[email protected]:fkei/sua.js.git"
},
"main": "./sua.js",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"should": "^13.2.1",
"uglify-js": "^3.4.0",
"eslint": "^4.19.1"
}
}