forked from tbranyen/diffhtml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.51 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.51 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
{
"name": "diffhtml",
"version": "0.9.2",
"description": "Easily swap out markup with an intelligent virtual dom",
"main": "dist/diffhtml",
"author": "Tim Branyen (@tbranyen)",
"repository": "https://github.com/tbranyen/diffhtml",
"license": "MIT",
"scripts": {
"prepublish": "babel lib --source-maps -d dist/cjs",
"watch": "watchify -t babelify -s diff lib/index.js -o 'derequire > dist/diffhtml.js' -v",
"build-runtime": "browserify -t babelify -i ./lib/util/parser.js -u ./lib/util/parser.js -s diff lib/index.js | derequire > dist/diffhtml-runtime.js",
"build": "npm run build-main && npm run build-runtime",
"build-main": "browserify -t babelify -s diff lib/index.js | derequire > dist/diffhtml.js",
"jshint": "jshint lib/**/*.js",
"karma": "karma start",
"test": "npm run jshint && npm run karma -- --single-run"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"browserify-istanbul": "^2.0.0",
"coveralls": "^2.11.12",
"derequire": "^2.0.3",
"isparta": "^4.0.0",
"istanbul": "^0.4.4",
"jshint": "^2.9.2",
"karma": "^1.1.2",
"karma-browserify": "^5.1.0",
"karma-browserstack-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"mocha": "^3.0.1",
"phantomjs-prebuilt": "^2.1.10",
"watchify": "^3.7.0"
}
}