This repository was archived by the owner on Apr 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "userdive",
"description": "load @userdve/agent from cdn",
"version": "0.4.1",
"author": "UNCOVER TRUTH Inc",
"bugs": {
"url": "https://github.com/userdive/userdive.js/issues"
},
"dependencies": {},
"devDependencies": {
"@types/faker": "^4.1.2",
"@types/karma": "^1.7.3",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"@types/power-assert": "^1.4.29",
"@uncovertruth/eslint-config": "^3.4.0",
"@uncovertruth/tslint-config": "^4.0.0",
"codecov": "^3.0.0",
"eslint": "^4.18.0",
"faker": "^4.1.0",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.4.1",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^2.0.9",
"lint-staged": "^7.0.0",
"mocha": "^5.0.1",
"power-assert": "^1.4.4",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2",
"ts-loader": "^3.5.0",
"ts-node": "^5.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"typescript-eslint-parser": "^14.0.0",
"webpack": "^3.11.0",
"webpack-dev-middleware": "^2.0.5",
"webpack-espower-loader": "^1.0.2"
},
"files": [
"lib/"
],
"homepage": "https://github.com/userdive/userdive.js#readme",
"keywords": [
"userdive"
],
"license": "GPL-3.0",
"lint-staged": {
"*.{ts,tsx}": [
"prettier-eslint --write",
"tslint --fix",
"git add"
],
"*.md": [
"prettier --parser markdown --write",
"git add"
]
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/userdive/userdive.js.git"
},
"scripts": {
"appveyor": "karma start --single-run --browsers=IE",
"build": "tsc",
"clean": "rimraf lib coverage build",
"coverage": "codecov -f ./coverage/Chrome*/lcov.info",
"lint": "tslint {src,test}/**/*.ts",
"precommit": "lint-staged",
"test": "karma start --single-run"
},
"types": "lib/index.d.ts"
}