-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 934 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
41
42
{
"name": "rollup-plugin-jsxbin",
"version": "1.0.0",
"description": "Plugin for rollup with covert jsx file to jsxbin",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"typings": "./src/index.ts",
"scripts": {
"dev": "rollup -c -w",
"pretest": "npm run build",
"coverage": "npm test -- --coverage",
"build": "rollup -c",
"prebuild": "rm -rf dist/*",
"test": "jest"
},
"keywords": [
"rollup-plugin",
"jsxbin",
"adobe",
"cep"
],
"author": "tomieric",
"license": "MIT",
"dependencies": {
"jsxbin": "^1.7.0"
},
"devDependencies": {
"coveralls": "^3.0.5",
"jest": "^24.8.0",
"rollup": "^1.17.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"dist/index.js"
],
"coverageDirectory": "dist/coverage"
}
}