-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "idyll-compiler",
"version": "5.0.0-alpha.2",
"description": "Compiler for idyll",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.mjs"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"type": "commonjs",
"scripts": {
"prebuild": "rimraf dist",
"compile": "nearleyc src/grammar.ne -o src/grammar.js",
"build": "npm run compile && rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w",
"test": "npm run build && mocha --require esm",
"prepublish": "npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idyll-lang/idyll.git"
},
"keywords": [
"idyll",
"compiler"
],
"author": "Matthew Conlen",
"license": "MIT",
"bugs": {
"url": "https://github.com/idyll-lang/idyll/issues"
},
"homepage": "https://github.com/idyll-lang/idyll#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"concurrently": "^4.1.0",
"cross-env": "^5.0.5",
"esm": "^3.2.25",
"expect.js": "^0.3.1",
"mocha": "8",
"rimraf": "^2.6.2",
"rollup": "^2.70.0"
},
"dependencies": {
"gray-matter": "^3.1.1",
"idyll-ast": "^3.0.0-alpha.1",
"lex": "^1.7.9",
"nearley": "^2.20.1",
"smartquotes": "^2.0.0"
}
}