-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "html-normalizer",
"version": "7.0.2",
"description": "Used to normalize html and jsx to strings so they can be used in assertions.",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/karma/bin/karma start --single-run",
"test-dev": "node_modules/karma/bin/karma start",
"build": "babel -d lib/ index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TimothyRHuertas/normalizer"
},
"keywords": [
"test",
"normalize HTML",
"HTML",
"test JSX",
"react test",
"javascript test",
"assertions"
],
"author": "Timothy Huertas",
"license": "ISC",
"devDependencies": {
"babel": "5.1.13",
"babelify": "6.0.2",
"chai": "2.3.0",
"chai-spies": "^0.6.0",
"hintify": "0.1.0",
"jsdom": "3.1.2",
"karma": "0.12.31",
"karma-browserify": "3.0.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.1.8",
"karma-coverage": "0.3.1",
"karma-mocha": "0.1.10",
"mocha": "2.2.4",
"uglifyjs": "2.4.10"
},
"peerDependencies": {
"jsdom": ">=3.1.2 <10.0.0"
},
"dependencies": {
"react": "0.14"
}
}