forked from appcues/snabbdom-virtualize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "@appcues/snabbdom-virtualize",
"version": "1.0.0-beta.0",
"description": "Library for turning strings and DOM nodes into virtual DOM nodes compatible with snabbdom.",
"author": {
"name": "Ray Di Ciaccio",
"email": "[email protected]"
},
"license": "MIT",
"bugs": "https://github.com/appcues/snabbdom-virtualize/issues",
"repository": {
"type": "git",
"url": "https://github.com/appcues/snabbdom-virtualize.git"
},
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d lib",
"watch": "npm run build -- --watch",
"test": "npm run build && mocha test/nodejs_tests.js && karma start test/karma.conf.js"
},
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.5.0",
"jsdom": "^9.4.2",
"karma": "^0.13.19",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-sauce-launcher": "^0.3.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"snabbdom": "3.1.0",
"socket.io": "1.4.6",
"webpack": "^1.12.12"
},
"peerDependencies": {
"snabbdom": "^3.1.0"
},
"dependencies": {
"html-parse-stringify2": "^2"
}
}