-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 891 Bytes
/
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
{
"name": "html-looks-like",
"version": "1.0.3",
"description": "Assert that an HTML string looks approximately the same as another HTML",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Andre Staltz",
"repository": {
"type": "git",
"url": "git+https://github.com/staltz/html-looks-like.git"
},
"license": "MIT",
"dependencies": {
"diff-dom": "^2.1.0",
"domwalk": "^1.1.0",
"jsdom": "^9.11.0",
"lodash.sortby": "^4.7.0"
},
"devDependencies": {
"@types/jsdom": "^2.0.30",
"@types/mocha": "^2.2.39",
"mocha": "^3.2.0",
"ts-node": "^2.1.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"scripts": {
"compile": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts src/*.ts",
"mocha": "mocha test/*.ts test/**/*.ts --require ts-node/register",
"test": "npm run lint && npm run mocha"
}
}