-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 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
{
"name": "snowpack-plugin-less",
"version": "1.0.7",
"description": "Use the Less compiler to build .less files from source",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"test": "jest",
"cov": "jest --coverage",
"lint": "eslint ./src/** --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fansenze/snowpack-plugin-less.git"
},
"keywords": [
"snowpack",
"less",
"css",
"style",
"snowpack-plugin"
],
"author": "senze.fan",
"license": "MIT",
"bugs": {
"url": "https://github.com/fansenze/snowpack-plugin-less/issues"
},
"homepage": "https://github.com/fansenze/snowpack-plugin-less#readme",
"dependencies": {
"less": "^3.12.2",
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/less": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"release-it": "^14.4.0",
"snowpack": "^3.0.11",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"lint-staged": {
"*.{js,ts}": [
"eslint",
"prettier --write",
"git add"
]
}
}