-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
55
56
57
{
"name": "rollup-plugin-inline-code",
"version": "1.2.7",
"description": "Rollup plugin for loading scripts as a text",
"main": "dist/index.js",
"files": [
"dist/index.*"
],
"scripts": {
"format": "prettier --write '{src/**/*,tests/**/*.test.ts}'",
"build": "tsc && cp dist/src/* dist",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denisstasyev/rollup-plugin-inline-code.git"
},
"keywords": [
"rollup",
"plugin",
"rollup-plugin",
"inline",
"insert",
"inline-code",
"insert-code",
"inline-javascript",
"insert-javascript"
],
"author": "Denis Stasyev",
"license": "MIT",
"bugs": {
"url": "https://github.com/denisstasyev/rollup-plugin-inline-code/issues"
},
"homepage": "https://github.com/denisstasyev/rollup-plugin-inline-code#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"babel-jest": "^27.0.2",
"babel-plugin-module-resolver": "^4.1.0",
"jest": "^27.0.4",
"jest-coverage-badges": "^1.1.2",
"prettier": "^2.3.1",
"semantic-release": "^17.4.4",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}