-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.11 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": "@vanillawc/wc-codemirror",
"version": "1.1.2",
"license": "MIT",
"author": "Evan Plaice <[email protected]> (http://evanplaice.com/)",
"description": "CodeMirror as a vanilla web component",
"keywords": [
"web-components",
"vanilla",
"editor",
"codemirror"
],
"repository": "https://github.com/vanillawc/wc-codemirror/",
"main": "src/wc-codemirror.js",
"module": "dist/wc-codemirror.js",
"type": "module",
"scripts": {
"start": "npx live-server --open=demo",
"dev": "npx live-server --open=dev",
"lint": "semistandard",
"build": "npx rollup --config rollup.config.js ",
"build:assets": "cp -r ./node_modules/codemirror/theme/* ./theme/ && cp -r ./node_modules/codemirror/mode/* ./mode/",
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
"preversion": "npm run lint",
"postversion": "git push --follow-tags"
},
"dependencies": {},
"devDependencies": {
"codemirror": "^5.49.2",
"semistandard": "^14.2.0"
},
"semistandard": {
"ignore": [
"demo/*",
"dev/*",
"dist/*",
"mode/*"
]
}
}