-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "@recreatejs/jasmine-pixelmatch",
"version": "0.1.0",
"description": "HTML5 canvas visual regression tests for Jasmine using pixelmatch",
"keywords": [
"html5",
"canvas",
"pixelmatch",
"jasmine",
"test",
"visual"
],
"license": "MIT",
"author": "Jeremy Shipman",
"main": "dist/jasmine-pixelmatch.cjs.js",
"module": "dist/jasmine-pixelmatch.esm.js",
"browser": "dist/jasmine-pixelmatch.js",
"scripts": {
"build": "npm run build:js",
"build:js": "rollup -c",
"lint": "prettier --check **/*.js",
"lint:fix": "prettier --write **/*.js",
"test": "npm run lint && npm run test:ci",
"test:ci": "testem ci",
"test:dev": "testem --launch=none"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@types/pixelmatch": "^5.0.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jasmine": "^4.1.0",
"eslint-plugin-prettier": "^3.1.1",
"jasmine-core": "^3.5.0",
"pixelmatch": "^5.1.0",
"prettier": "^1.19.1",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"testem": "^3.0.2"
},
"files": [
"dist",
"src"
]
}