-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "@alexcambose/virtual-dom",
"version": "1.0.1",
"description": "A Virtual DOM algorithm implementation that improves front end performance by updating only changed nodes in the DOM.",
"main": "src/index.js",
"scripts": {
"test": "cross-env mocha --require babel-core/register",
"prod": "cross-env NODE_ENV=production webpack",
"build": "cross-env NODE_ENV=development webpack",
"watch": "cross-env NODE_ENV=development webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexcambose/virtual-dom.git"
},
"keywords": [
"virtual-dom",
"algorithm",
"react",
"dom",
"api",
"diffing",
"dom-manipulation",
"dom-events",
"dom-tree"
],
"author": "Alexandru Cambose",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexcambose/virtual-dom/issues"
},
"homepage": "https://github.com/alexcambose/virtual-dom#readme",
"devDependencies": {
"chai": "^4.1.2",
"jsdom": "^11.10.0",
"mocha": "^5.1.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"cross-env": "^5.1.5"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-env": "^2.4.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0"
}
}