-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·69 lines (69 loc) · 1.54 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
64
65
66
67
68
69
{
"name": "@stencil-community/less",
"version": "2.0.0",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prebuild": "rimraf ./dist && npm run test && npm run lint",
"build": "tsc && npm run rollup",
"watch": "tsc --watch",
"rollup": "rollup -c",
"version": "npm run build",
"release": "np",
"lint": "eslint ./src",
"test": "jest",
"test.watch": "jest --watch"
},
"dependencies": {
"less": "^4.2.0"
},
"peerDependencies": {
"@stencil/core": "^4.17.1"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@stencil/core": "^4.17.1",
"@types/jest": "^29.5.12",
"@types/less": "^3.0.6",
"@types/node": "^20.12.7",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"np": "^10.0.5",
"rimraf": "^5.0.5",
"rollup": "^4.16.4",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stencil-community/stencil-less.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"description": "The Stencil Less Plugin",
"keywords": [
"stencil",
"less"
],
"jest": {
"transform": {
"^.+\\.(js|ts|tsx)$": "<rootDir>/test/jest.preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
],
"testEnvironmentOptions": {
"url": "http://localhost"
}
}
}