-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 909 Bytes
/
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
{
"name": "babel-plugin-virtual-jade-compiler",
"version": "1.0.6",
"description": "A Babel 6 plugin for compiling virtual jade files into JavaScript for Virtual DOM",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"prepublish": "npm run build",
"lint": "./node_modules/eslint/bin/eslint.js src/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ilyakamens/babel-plugin-virtual-jade-compiler.git"
},
"keywords": [
"babel",
"babel 6",
"virtual-jade",
"jade"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"virtual-dom": "^2.1.1",
"virtual-jade": "^0.3.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.11.1",
"eslint-plugin-sorting": "^0.1.0"
}
}