forked from stenciljs/sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "@stencil/sass",
"version": "2.0.0-0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc && npm run rollup && npm run test",
"watch": "tsc --watch",
"rollup": "rollup -c rollup.config.js",
"version": "npm run build",
"release": "np --no-2fa",
"test": "jest",
"test.watch": "jest --watch"
},
"peerDependencies": {
"@stencil/core": ">=1.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^10.0.0",
"@stencil/core": "^1.14.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/sass": "1.16.0",
"jest": "^26.6.3",
"np": "^7.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"sass": "1.29.0",
"terser": "^5.3.8",
"ts-jest": "^26.4.4",
"typescript": "4.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-sass.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"description": "The Stencil Sass Plugin",
"keywords": [
"stencil",
"sass"
],
"jest": {
"preset": "ts-jest",
"testURL": "http://localhost"
}
}