-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 874 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
35
36
37
38
39
40
41
42
{
"name": "gulp-riot",
"version": "1.1.4",
"description": "gulp plugin for riot",
"keywords": [
"gulpplugin",
"riot",
"riotjs",
"gulp"
],
"main": "build/index.js",
"scripts": {
"test": "mocha --require babel-register",
"prebuild": "rimraf build",
"build": "babel src -d build",
"prepublish": "npm run test && npm run build"
},
"author": {
"name": "jigsaw",
"url": "http://jgs.me"
},
"repository": {
"url": "https://github.com/e-jigsaw/gulp-riot.git"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"plugin-error": "^1.0.1",
"riot": "3.x",
"through2": "2.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"vinyl": "^2.2.0"
}
}