forked from riot/compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "@riotjs/compiler",
"version": "4.4.2",
"description": "Compiler for riot .tag files",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"files": [
"dist",
"src"
],
"scripts": {
"prepare": "npm i [email protected] [email protected] @babel/core@7 @babel/preset-env@7 --no-save",
"lint": "eslint src/ test/ build/",
"cov": "nyc report --reporter=text-lcov | coveralls",
"cov-html": "nyc report --reporter=html",
"build": "rollup -c build/rollup.node.config.js && rollup -c build/rollup.browser.config.js",
"postest": "npm run cov-html",
"test": "npm run lint && nyc mocha -r esm test/*.spec.js test/**/*.spec.js",
"debug": "mocha --inspect --inspect-brk -r esm test/*.spec.js test/**/*.spec.js",
"prepublishOnly": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riot/compiler.git"
},
"keywords": [
"riot",
"Riot.js",
"components",
"custom components",
"custom elements",
"compiler"
],
"devDependencies": {
"@riotjs/dom-bindings": "^4.3.0",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"eslint-config-riot": "^3.0.0",
"esm": "^3.2.25",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rollup": "^1.21.4",
"rollup-plugin-alias": "^2.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"shelljs": "^0.8.3"
},
"author": "Gianluca Guarini <[email protected]> (http://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/compiler/issues"
},
"homepage": "https://github.com/riot/compiler#readme",
"dependencies": {
"@riotjs/parser": "^4.1.0",
"@riotjs/util": "1.1.0",
"acorn": "^7.0.0",
"cssesc": "^3.0.0",
"cumpa": "^1.0.1",
"curri": "^1.0.1",
"dom-nodes": "^1.1.3",
"globals": "^12.1.0",
"recast": "^0.18.2",
"source-map": "^0.7.3"
}
}