-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "flems",
"version": "1.5.10",
"description": "A standalone web playground / sandbox",
"browser": "dist/flems.html",
"main": "src/index.js",
"scripts": {
"test": "echo some day",
"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": {
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.4",
"bss": "1.6.4",
"codemirror": "5.62.3",
"csso": "4.2.0",
"lz-string": "1.4.4",
"mithril": "2.0.3",
"object-inspect": "1.6.0",
"rollup": "2.56.3",
"rollup-plugin-esbuild": "4.5.0",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-modify": "3.0.0",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-svgo": "2.0.0-beta.1",
"source-map": "0.6.1",
"tarts": "2.0.0",
"wright": "2.1.1"
}
}