UNPKG

1.54 kBJSONView Raw
1{
2 "name": "@stencil/sass",
3 "version": "1.5.2",
4 "license": "MIT",
5 "main": "dist/index.js",
6 "module": "dist/index.mjs",
7 "types": "dist/index.d.ts",
8 "files": [
9 "dist/"
10 ],
11 "scripts": {
12 "prebuild": "rimraf ./dist",
13 "lint.prettier": "prettier --write 'src/**/*.ts'",
14 "build": "npm run prebuild && tsc && npm run rollup",
15 "watch": "tsc --watch",
16 "rollup": "rollup -c rollup.config.js",
17 "version": "npm run build",
18 "release": "np",
19 "test": "jest",
20 "test.ci": "npm run test && npm run test.prettier",
21 "test.prettier": "prettier --check 'src/**/*.ts'",
22 "test.watch": "jest --watch"
23 },
24 "peerDependencies": {
25 "@stencil/core": ">=1.0.2"
26 },
27 "devDependencies": {
28 "@ionic/prettier-config": "^2.0.0",
29 "@rollup/plugin-node-resolve": "^13.0.5",
30 "@stencil/core": "^2.8.1",
31 "@types/jest": "^26.0.15",
32 "@types/node": "^14.17.18",
33 "@types/sass": "^1.16.0",
34 "jest": "^26.6.3",
35 "np": "^7.0.0",
36 "rimraf": "^3.0.2",
37 "rollup": "^2.33.1",
38 "prettier": "^2.2.1",
39 "sass": "^1.29.0",
40 "terser": "^5.3.8",
41 "ts-jest": "^26.4.4",
42 "typescript": "^4.0.5"
43 },
44 "repository": {
45 "type": "git",
46 "url": "git+https://github.com/ionic-team/stencil-sass.git"
47 },
48 "author": "Ionic Team",
49 "homepage": "https://stenciljs.com/",
50 "description": "The Stencil Sass Plugin",
51 "keywords": [
52 "stencil",
53 "sass"
54 ],
55 "jest": {
56 "preset": "ts-jest",
57 "testURL": "http://localhost"
58 },
59 "prettier": "@ionic/prettier-config"
60}