This repository was archived by the owner on Dec 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 KB
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
{
"name": "@pageworks/device-manager",
"version": "1.2.3",
"description": "A TypeScript module for handling device detection and status classes.",
"keywords": [
"typescript",
"device-management",
"device-detection"
],
"author": "Pageworks",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pageworks/device-manager.git"
},
"bugs": {
"url": "https://github.com/pageworks/device-manager/issues"
},
"main": "DeviceManager.js",
"types": "global.d.ts",
"files": [
"lib",
"src",
"DeviceManager.js",
"DeviceManager.js.map",
"global.d.ts"
],
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"linters": {
"app/typescript/**.*.ts": "npm run lint:typescript"
}
},
"scripts": {
"precommit": "tslint -c .tslintrc.js -p tsconfig.json -t verbose",
"compile": "tsc",
"bundle": "webpack",
"demo": "http-server ./docs -o",
"test": "npm run compile && npm run bundle && npm run demo"
},
"devDependencies": {
"http-server": "^0.11.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"@pageworks/pjax": "^2.0.0"
}
}