forked from ionic-team/stencil-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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": "1.3.2",
"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",
"test": "jest",
"test.watch": "jest --watch"
},
"peerDependencies": {
"@stencil/core": "^1.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"@stencil/core": "^1.14.0",
"@types/jest": "24.9.1",
"@types/node": "13.9.8",
"@types/sass": "1.16.0",
"jest": "24.9.0",
"np": "6.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.17.1",
"sass": "1.26.8",
"terser": "^4.8.0",
"ts-jest": "^24.3.0",
"typescript": "3.9.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"
}
}