init
parents
Showing
.babelrc
0 → 100644
.gitignore
0 → 100644
.npmignore
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
lib/event-listeners.js
0 → 100644
lib/index.js
0 → 100644
lib/nodes.js
0 → 100644
lib/strings.js
0 → 100644
lib/utils.js
0 → 100644
nodes.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "snabbdom-virtualize", | ||
"version": "0.7.0", | ||
"description": "Library for turning strings and DOM nodes into virtual DOM nodes compatible with snabbdom.", | ||
"author": { | ||
"name": "Ray Di Ciaccio", | ||
"email": "ray@appcues.com" | ||
}, | ||
"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.26.0", | ||
"babel-core": "^6.22.1", | ||
"babel-loader": "^7.1.5", | ||
"babel-preset-env": "^1.3.2", | ||
"chai": "^4.1.2", | ||
"jsdom": "^9.4.2", | ||
"karma": "^1.4.1", | ||
"karma-chai": "^0.1.0", | ||
"karma-chai-sinon": "^0.1.5", | ||
"karma-chrome-launcher": "^0.2.2", | ||
"karma-coverage": "^1.1.1", | ||
"karma-firefox-launcher": "^0.1.7", | ||
"karma-mocha": "^1.3.0", | ||
"karma-sauce-launcher": "^0.3.0", | ||
"karma-sinon": "^1.0.5", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-spec-reporter": "0.0.31", | ||
"karma-webpack": "^2.0.2", | ||
"mocha": "^3.2.0", | ||
"sinon": "^6.1.4", | ||
"sinon-chai": "^3.2.0", | ||
"snabbdom": "~0.7.1", | ||
"socket.io": "^2.1.1", | ||
"webpack": "^3.6.0" | ||
}, | ||
"peerDependencies": { | ||
"snabbdom": "~0.7.1" | ||
}, | ||
"dependencies": { | ||
"htmlparser2": "3.9.2" | ||
} | ||
} | ||
\ No newline at end of file |
src/event-listeners.js
0 → 100644
src/index.js
0 → 100644
src/nodes.js
0 → 100644
src/strings.js
0 → 100644
src/utils.js
0 → 100644
strings.js
0 → 100644
test/karma.conf.js
0 → 100644
Please register or sign in to comment