-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 876 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
{
"name": "superb.js",
"version": "0.3.0",
"description": "JavaScript MVC framework built on superviews, supermodels, and Incremental-DOM",
"contributors": [
{
"name": "Derek Kent",
"email": "dak@dak.org"
}
],
"files": [
"dist"
],
"scripts": {
"build": "gulp build",
"dist": "gulp dist",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "https://github.com/dak/superb.js.git"
},
"license": "MIT",
"main": "dist/superb.js",
"peerDependencies": {
"incremental-dom": "^0.5.1"
},
"engines": {
"node": ">=5.10"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-rollup": "^1.9.0",
"gulp-util": "^3.0.7",
"require-dir": "^0.3.0",
"rollup-plugin-includepaths": "^0.1.2"
}
}