-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 1.88 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
70
71
72
73
74
75
{
"name": "@stencil-community/postcss",
"version": "2.2.0",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "npm run prebuild && tsc && npm run rollup && npm run test",
"watch": "tsc --watch",
"rollup": "rollup -c rollup.config.js",
"version": "npm run build",
"release": "np",
"lint": "npm run lint.prettier",
"lint.prettier": "prettier --write 'src/**/*.ts'",
"test": "jest --coverage",
"test.ci": "npm run test.jest && npm run test.prettier",
"test.jest": "jest",
"test.prettier": "prettier --check 'src/**/*.ts'",
"test.watch": "jest --watch"
},
"dependencies": {
"postcss": "~8.4.27"
},
"peerDependencies": {
"@stencil/core": ">=2.0.0 || >=3.0.0 || >=4.0.0"
},
"devDependencies": {
"@ionic/prettier-config": "^4.0.0",
"@stencil/core": "^4.0.5",
"@types/jest": "^26.0.19",
"@types/node": "^14.17.18",
"autoprefixer": "^10.3.6",
"jest": "^26.6.3",
"np": "^7.0.0",
"prettier": "^3.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.35.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stencil-community/stencil-postcss.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"description": "The Stencil PostCSS Plugin",
"keywords": [
"stencil",
"stencil-community",
"postcss"
],
"jest": {
"transform": {
"^.+\\.(js|ts|tsx)$": "<rootDir>/test/jest.preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
],
"testURL": "http://localhost",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
]
},
"prettier": "@ionic/prettier-config"
}