-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"name": "bundle-runner",
"version": "0.0.1",
"description": "run webpack bundles in Node.js with optional VM sandboxing",
"repository": "nuxt-contrib/bundle-runner",
"license": "MIT",
"main": "./dist/bundle-runner.cjs.js",
"module": "./dist/bundle-runner.esm.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "yarn clean && rollup -c && yarn types",
"clean": "rm -rf ./dist ./types",
"lint": "eslint --ext .ts src",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && yarn jest",
"types": "tsc --declarationDir types --declaration --emitDeclarationOnly"
},
"dependencies": {
"source-map": "^0.7.3"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
"@rollup/plugin-typescript": "latest",
"@types/jest": "latest",
"babel-jest": "latest",
"eslint": "latest",
"jest": "latest",
"rollup": "latest",
"rollup-plugin-babel": "latest",
"rollup-plugin-node-resolve": "latest",
"standard-version": "latest",
"ts-jest": "latest",
"tsdoc": "latest",
"typescript": "latest"
}
}