-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
66 lines (64 loc) · 2.04 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
60
61
62
63
64
65
66
{
"name": "ymacs",
"version": "0.6.0",
"description": "Emacs-like editor for the browser",
"main": "dist/ymacs.mjs",
"css": "dist/ymacs.css",
"targets": {
"main": {
"source": "src/index.js",
"optimize": true
},
"css": {
"source": "src/css/ymacs.scss",
"optimize": true
},
"themes": {
"source": [
"src/css/themes/sanityinc-tomorrow-day.scss",
"src/css/themes/sanityinc-tomorrow-blue.scss",
"src/css/themes/sanityinc-tomorrow-night.scss",
"src/css/themes/sanityinc-tomorrow-bright.scss",
"src/css/themes/sanityinc-tomorrow-eighties.scss",
"src/css/themes/material.scss",
"src/css/themes/base16-apathy.scss",
"src/css/themes/whiteboard.scss",
"src/css/themes/standard-light.scss",
"src/css/themes/standard-dark.scss",
"src/css/themes/ef-deuteranopia-light.scss",
"src/css/themes/ef-cyprus.scss",
"src/css/themes/ef-elea-dark.scss",
"src/css/themes/ef-autumn.scss",
"src/css/themes/ef-maris-light.scss",
"src/css/themes/ef-maris-dark.scss",
"src/css/themes/ef-duo-light.scss",
"src/css/themes/ef-duo-dark.scss"
]
}
},
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mishoo/ymacs.git"
},
"keywords": [
"emacs",
"editor",
"web"
],
"author": "Mihai Bazon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mishoo/ymacs/issues"
},
"homepage": "https://github.com/mishoo/ymacs#readme",
"devDependencies": {
"@parcel/transformer-sass": "^2.12.0",
"parcel": "^2.12.0"
}
}