-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.38 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.38 KB
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
{
"name": "@theintern/visual-plugin",
"version": "0.2.1-pre",
"description": "Visual regression testing plugin for Intern",
"author": "Paul Shannon",
"license": "MPL-2.0",
"homepage": "https://github.com/theintern/visual-plugin#readme",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/theintern/visual-plugin.git"
},
"keywords": [
"intern",
"plugin",
"visual",
"testing",
"test",
"visual regression",
"visual testing"
],
"bugs": {
"url": "https://github.com/theintern/visual-plugin/issues"
},
"peerDependencies": {
"intern": ">=4.2.0, <5.0.0"
},
"devDependencies": {
"@theintern/dev": "~0.7.3",
"@theintern/leadfoot": "~2.1.0",
"@types/node": "~9.6.16",
"concurrently": "~3.5.0",
"intern": "~4.2.0",
"stylus": "~0.54.5"
},
"dependencies": {
"@types/pngjs": "~3.3.0",
"pngjs": "~3.3.0"
},
"scripts": {
"build": "concurrently intern-dev-build intern-dev-api",
"clean": "intern-dev-clean",
"release": "intern-dev-release",
"test": "intern",
"ci": "intern-dev-build && intern"
},
"internDev": {
"resources": {
"_build": [
"src/*.d.ts",
"src/**/*.css"
],
"_tests": [
"tests/**/*.html",
"src/**/*.css"
]
},
"stylus": [
"src/reporters/util/assets/main.styl"
]
}
}