-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.89 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.89 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
{
"name": "session-recorder",
"version": "1.1.1",
"description": "Record every movement in web",
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"lint": "npx tslint src/**/*",
"dev": "npx webpack-dev-server --inline --config build/dev.js",
"prebuild": "npm run lint && rimraf dist",
"commit": "npx git-cz",
"build": "npx tsc",
"release": "npm run build && git add .&& npx release-it"
},
"repository": {
"type": "git",
"url": "git@github.com:waynecz/session-recorder.git"
},
"keywords": [
"feedback",
"heatmap",
"analysis",
"uirecord"
],
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts*": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "waynecz <451578533@qq.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"awesome-typescript-loader": "^5.2.1",
"commitizen": "^3.0.5",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.10",
"cz-conventional-changelog": "^2.1.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"node-sass": "^4.7.2",
"prettier": "^1.14.3",
"release-it": "^10.0.1",
"rimraf": "^2.6.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"tslint-loader": "^3.6.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.1.3",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"dts-bundle": "^0.7.3"
}
}