-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
{
"name": "eddystone-web-bluetooth",
"description": "Eddystone Web Bluetooth client (works with Physical Web).",
"author": {
"name": "Gerard Rovira Sánchez",
"email": "zurfyx@gmail.com",
"url": "zurfyx.com"
},
"version": "1.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run build:clean",
"build": "tsc",
"build:clean": "rimraf dist",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"postpublish": "npm run build:clean",
"lint": "tslint './src/**/*.{ts,tsx}' --project ./tsconfig.json --type-check",
"pretest": "npm run build",
"test": "jest",
"coverage": "jest --coverage",
"check": "npm-run-all test lint build:clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zurfyx/eddystone-web-bluetooth.git"
},
"keywords": [
"eddystone",
"web",
"bluetooth",
"client",
"config",
"url",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zurfyx/eddystone-web-bluetooth/issues"
},
"homepage": "https://github.com/zurfyx/eddystone-web-bluetooth#readme",
"dependencies": {
"@types/node": "^8.0.0",
"@types/text-encoding": "0.0.30",
"@types/web-bluetooth": "0.0.2",
"text-encoding": "^0.6.4",
"tslib": "^1.7.1"
},
"devDependencies": {
"@types/jest": "^20.0.0",
"jest": "^20.0.4",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.6",
"tslint": "^5.4.3",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.3.4"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}