forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
58
59
{
"name": "@open-wc/create",
"version": "0.26.4",
"publishConfig": {
"access": "public"
},
"description": "Easily setup all the tools of Open Web Components.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/open-wc.git",
"directory": "packages/create"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/open-wc/",
"bin": {
"create-open-wc": "./dist/create.js"
},
"scripts": {
"build": "rimraf dist && babel src --out-dir dist --copy-files --include-dotfiles",
"prepublishOnly": "npm run build && ../../scripts/insert-header.js",
"start": "npm run build && node ./dist/create.js",
"test": "npm run test:node",
"test:node": "mocha --require @babel/register",
"test:update-snapshots": "node -r @babel/register ./test/update-snapshots.js",
"test:watch": "onchange 'src/**/*.js' 'test/**/*.js' -- npm run test --silent"
},
"files": [
"dist"
],
"keywords": [
"open-wc",
"owc",
"generator",
"starter-app"
],
"dependencies": {
"chalk": "^2.4.2",
"command-line-args": "^5.0.2",
"dedent": "^0.7.0",
"deepmerge": "^3.2.0",
"glob": "^7.1.3",
"prompts": "^2.1.0",
"semver": "^6.1.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
"eslint": "^6.7.2",
"mocha": "^6.2.2",
"onchange": "^5.2.0",
"rimraf": "^3.0.0"
}
}