-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 973 Bytes
/
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
{
"name": "stencil-inline-svg",
"version": "1.1.0",
"description": "A Stenciljs plugin to insert inline SVGs into components",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf ./dist && npm run test",
"build": "tsc && npm run rollup",
"dev": "tsc --watch",
"release": "np",
"rollup": "rollup -c",
"start": "npm run dev",
"test": "jest",
"test.watch": "jest --watch --coverage"
},
"keywords": [
"stencil",
"plugin",
"svg",
"inline"
],
"author": "Fabricio Rodrigues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fabriciomendonca/stencil-inline-svg"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^11.9.4",
"jest": "^27.0.4",
"np": "^7.5.0",
"rimraf": "^2.6.3",
"rollup": "^2.51.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
}
}