forked from Rhymmor/CodeFlask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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": "codeflask",
"version": "1.1.0",
"description": "A micro code-editor for awesome web pages",
"main": "build/codeflask.min.js",
"module": "build/codeflask.module.js",
"files": [
"build/codeflask.min.js",
"build/codeflask.module.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "serve build & rollup -c -w",
"start": "serve public",
"pretest": "npm run build",
"test": "wdio test/wdio.conf.js",
"prepublishOnly": "npm install && npm run build"
},
"dependencies": {
"prismjs": "^1.25.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@wdio/local-runner": "^7.16.8",
"@wdio/mocha-framework": "^7.16.6",
"@wdio/spec-reporter": "^7.16.4",
"chai": "^4.3.4",
"chromedriver": "^96.0.0",
"micro": "^9.3.4",
"mocha": "^9.1.3",
"rollup": "^2.60.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^13.0.2",
"wdio-chromedriver-service": "^7.2.2",
"webdriverio": "^7.16.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bellycat77/CodeFlask.git"
},
"keywords": [
"code-editor",
"code",
"syntax-highlight",
"highlight"
],
"author": "Claudio Holanda",
"license": "MIT",
"bugs": {
"url": "https://github.com/bellycat77/CodeFlask/issues"
},
"homepage": "https://kazzkiq.github.io/CodeFlask/"
}