This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
{
"name": "@livestorm/plugin",
"version": "0.0.1",
"description": "All classes and utilities you will need to create a Livestorm plugin",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"dev": "tsc --watch",
"dev:sass": "sass --watch --style=compressed src/assets/css:dist/assets/css",
"build": "tsc && tsc-alias && sass --style=compressed src/assets/css:dist/assets/css",
"e2e:plugin:publish": "cd cypress/fixtures/plugin && yarn && yarn livestorm publish",
"e2e:run:local": "yarn run e2e:plugin:publish && yarn cypress run --headless --browser chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/livestorm/livestorm-plugin.git"
},
"author": "Livestorm",
"license": "MIT",
"bugs": {
"url": "https://github.com/livestorm/livestorm-plugin/issues"
},
"homepage": "https://github.com/livestorm/livestorm-plugin#readme",
"lint-staged": {
"src/**/*.ts": [
"eslint --max-warnings 0 --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"cypress": "^7.6.0",
"eslint": "^7.17.0",
"husky": "4",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"sass": "^1.37.2",
"ts-jest": "^26.4.4",
"tsc-alias": "^1.2.11",
"typescript": "^4.1.3"
},
"dependencies": {
"uuid": "^8.3.2"
}
}