forked from google/incremental-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "incremental-dom",
"version": "0.3.0",
"description": "An in-place virtual DOM library",
"main": "dist/incremental-dom-cjs.js",
"author": "The Incremental DOM Authors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/google/incremental-dom.git"
},
"files": [
"index.js",
"src",
"dist"
],
"scripts": {
"test": "gulp unit",
"lint": "gulp lint",
"build": "gulp build",
"dist": "gulp dist",
"prepublish": "npm run dist"
},
"devDependencies": {
"browserify": "^10.2.4",
"chai": "^3.0.0",
"del": "^2.0.2",
"es6ify": "~1.6.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-file": "^0.2.0",
"gulp-gjslint": "~0.1.4",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "~1.5.1",
"gulp-uglify": "~1.2.0",
"gulp-util": "~3.0.4",
"karma": "^0.12.37",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "~0.1.4",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "~0.2.1",
"karma-sinon-chai": "^1.0.0",
"mocha": "^2.2.5",
"phantomjs": "~1.9.18",
"rollup": "^0.25.1",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.1.0",
"watchify": "^3.2.3",
"webcomponents.js": "^0.7.2"
}
}