-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
64 lines (64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "set-dom",
"description": "Lightweight dom diffing library with plain old html.",
"version": "7.5.2",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/DylanPiercey/set-dom/issues",
"devDependencies": {
"browserify": "^14.4.0",
"bundle-collapser": "^1.3.0",
"coveralls": "^2.13.1",
"easy-sauce": "^0.4.1",
"exorcist": "^0.4.0",
"istanbul": "^0.4.5",
"jsdom": "^11.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.5.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"uglify-js": "^3.0.28"
},
"homepage": "https://github.com/DylanPiercey/set-dom",
"keywords": [
"diff",
"dom",
"hyperx",
"jsx",
"react",
"render",
"set-dom",
"tusk",
"update",
"virtual"
],
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/DylanPiercey/set-dom"
},
"scripts": {
"build": "make build",
"coveralls": "make coveralls",
"lint": "make lint",
"saucelabs": "make build-test && easy-sauce -c saucelabs.json",
"test": "npm run lint && make test",
"test-ci": "npm run lint && make test-ci"
},
"standard": {
"browser": true,
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach",
"Element"
],
"ignore": [
"dist",
"test/run.js"
]
}
}