forked from riot/compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 KB
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
{
"name": "riot-compiler",
"version": "3.6.0",
"description": "Compiler for riot .tag files",
"main": "lib/compiler.js",
"module": "dist/es6.compiler.js",
"jsnext:main": "dist/es6.compiler.js",
"directories": {
"lib": "lib",
"doc": "doc"
},
"files": [
"lib",
"doc",
"dist/*.js"
],
"scripts": {
"test": "make test",
"prepare": "npm run install-html && npm run install-js && npm run install-css",
"install-html": "npm i --no-save jade pug",
"install-js": "npm i --no-save babel-core babel-preset-es2015-riot buble coffee-script livescript typescript-simple",
"install-css": "npm i --no-save stylus nib node-sass less postcss autoprefixer",
"prepublishOnly": "make build && riot-bump && riot-bump lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riot/compiler.git"
},
"keywords": [
"riot",
"virtualdom",
"tag",
"compiler"
],
"peerDependency": {
"riot-tmpl": "*"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-riot": "^1.0.0",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"jspreproc": "^0.2.7",
"mocha": "^5.0.5",
"riot-bump": "^1.0.0"
},
"author": "Riot maintainers team + smart people from all over the world",
"contributors": [
"Richard Bondi https://github.com/rsbondi",
"Gianluca Guarini https://github.com/GianlucaGuarini",
"Tsutomu Kawamura https://github.com/cognitom",
"Alberto Martínez https://github.com/aMarCruz",
"Tero Piirainen https://github.com/tipiirai"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/compiler/issues"
},
"homepage": "https://github.com/riot/compiler#readme",
"dependencies": {
"skip-regex": "^0.3.1",
"source-map": "^0.7.2",
"string-similarity": "^1.2.0"
}
}