forked from stencil-community/stencil-postcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.46 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.46 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
{
"name": "@stencil/postcss",
"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": "tslint --project tsconfig.json",
"test": "jest",
"test.watch": "jest --watch"
},
"dependencies": {
"postcss": "^8.1.4"
},
"peerDependencies": {
"@stencil/core": "^2.2.0"
},
"devDependencies": {
"@stencil/core": "^2.2.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"jest": "^26.6.1",
"np": "^7.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"tslint": "^6.1.3",
"tslint-ionic-rules": "0.0.21",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-postcss.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"description": "The Stencil PostCSS Plugin",
"keywords": [
"stencil",
"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"
}
}