-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "idyll",
"version": "6.0.0-alpha.6",
"description": "Command line interface for idyll lang",
"main": "src/index.js",
"bin": {
"idyll": "bin/idyll.js"
},
"scripts": {
"test": "mocha test/**/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idyll-lang/idyll.git"
},
"keywords": [
"idyll"
],
"authors": [
"Matthew Conlen",
"Ben Clinkinbeard",
"Andrew Osheroff"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/idyll-lang/idyll/issues"
},
"homepage": "https://github.com/idyll-lang/idyll#readme",
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.7",
"@babel/runtime": "^7.17.9",
"brfs-node-15": "^2.0.2",
"browser-sync": "^2.27.9",
"bs-pretty-message": "^1.0.8",
"chalk": "^2.4.1",
"change-case": "^3.0.1",
"command-line-args": "^5.1.1",
"cross-spawn": "^6.0.5",
"csv-parse": "5",
"debug": "^3.1.0",
"dev-null": "^0.1.1",
"esbuild": "^0.14.11",
"fs-extra": "^5.0.0",
"html-tags": "^1.1.1",
"idyll-ast": "^3.0.0-alpha.1",
"idyll-compiler": "^5.0.0-alpha.2",
"idyll-components": "^6.0.0-alpha.2",
"idyll-document": "^4.0.0-alpha.4",
"idyll-layouts": "^4.0.0-alpha.0",
"idyll-template-projects": "^3.0.0-alpha.2",
"idyll-themes": "^4.0.0-alpha.0",
"inquirer": "^5.2.0",
"mkdirp": "^0.5.1",
"mustache": "^2.3.0",
"node-stdlib-browser": "^1.2.0",
"ora": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recursive-readdir": "^2.2.2",
"regenerator-runtime": "^0.13.5",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"resolve": "^1.3.3",
"slash": "^1.0.0",
"svg-tags": "^1.0.0",
"update-notifier": "^2.5.0",
"url-join": "^4.0.0",
"yargs": "^13.3.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"expect": "^27.5.1",
"jsdom": "^16.5.0",
"mocha": "^9.2.2",
"rimraf": "2.6.2"
}
}