This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.74 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": "@webcomponents-dev/vue-sfc2esm",
"version": "1.4.0",
"description": "Transpile Vue Single File Components to ES Modules - ready to be loaded by Vue",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --emitDeclarationOnly && rollup -c rollup.config.lib.js",
"build:test": "rollup -c rollup.config.test.js",
"test:watch": "concurrently 'rollup -c rollup.config.test.js -w' 'live-server --port=9000 --open=test/index.html'",
"pub": "rimraf dist && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webcomponents-dev/vue-sfc2esm.git"
},
"keywords": [
"vue",
"sfc",
"webcomponents.dev"
],
"author": "Georges Gomes",
"license": "ISC",
"bugs": {
"url": "https://github.com/webcomponents-dev/vue-sfc2esm/issues"
},
"homepage": "https://github.com/webcomponents-dev/vue-sfc2esm#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"acorn": "^7.0.0",
"chai": "^4.2.0",
"concurrently": "^4.1.2",
"estree-walker": "^0.6.1",
"live-server": "^1.2.1",
"mocha": "^6.2.0",
"rollup": "^1.21.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.1",
"sinon": "^7.4.2",
"typescript": "^3.3.3"
},
"dependencies": {
"@webcomponents-dev/sfc-parser": "^1.0.1",
"rimraf": "^3.0.0"
}
}