forked from porsager/flems
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "flems",
"version": "1.5.4",
"description": "A standalone web playground / sandbox",
"browser": "dist/flems.html",
"main": "src/index.js",
"scripts": {
"build": "npm run build:main && npm run build:runtime && npm run build:standalone",
"build:main": "node scripts/main",
"build:runtime": "node scripts/runtime",
"build:standalone": "node scripts/standalone",
"dev": "node scripts/wright",
"prepare": "npm run build"
},
"keywords": [
"playground",
"sandbox",
"eval",
"iframe"
],
"author": "Rasmus Porsager <[email protected]>",
"repository": "porsager/flems",
"license": "WTFPL",
"devDependencies": {
"bss": "1.6.3",
"codemirror": "5.48.2",
"csso": "3.5.1",
"lz-string": "1.4.4",
"mithril": "2.0.3",
"object-inspect": "1.6.0",
"rollup": "1.27.14",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "6.2.1",
"rollup-plugin-modify": "3.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-progress": "1.1.1",
"rollup-plugin-svgo": "1.1.0",
"rollup-plugin-uglify": "6.0.4",
"source-map": "0.6.1",
"wright": "2.0.0-rc1"
},
"dependencies": {
"prettier": "^2.4.1"
}
}