forked from kazzkiq/CodeFlask
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.39 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": "codesass",
"version": "1.1.0",
"description": "A micro code-editor for awesome web pages without CSS injection",
"main": "build/codesass.min.js",
"module": "build/codesass.module.js",
"files": [
"build/codesass.min.js",
"build/codesass.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": {},
"devDependencies": {
"chai": "^4.1.2",
"chromedriver": "^2.38.3",
"micro": "^9.3.0",
"mocha": "^5.1.1",
"rollup": "^0.58.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0",
"serve": "^6.5.1",
"wdio-chromedriver-service": "^0.1.3",
"wdio-mocha-framework": "^0.5.13",
"wdio-spec-reporter": "^0.1.4",
"webdriverio": "^4.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lol768/CodeFlask.git"
},
"keywords": [
"code-editor",
"code",
"syntax-highlight",
"highlight"
],
"author": "Claudio Holanda",
"license": "MIT",
"bugs": {
"url": "https://github.com/lol768/CodeFlask/issues"
},
"homepage": "https://github.com/lol768/CodeFlask"
}