-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "isdifferent",
"version": "2.0.1",
"description": "function that returns true if their two parameters are different",
"files": [
"/dist"
],
"main": "./dist/isDifferent.cjs.js",
"unpkg": "dist/isDifferent.iife.js",
"module": "dist/isDifferent.es.js",
"scripts": {
"test": "jest --watch ./src/__tests__",
"coverage": "jest --coverage ./src/__tests__",
"build": "./CI/build.sh"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hacknlove/isDifferent.git"
},
"keywords": [
"helper",
"difference"
],
"author": "Antonio Fernández-Porrúa <antonio@hacknlove.org> (https://pykiss.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/hacknlove/isDifferent/issues"
},
"homepage": "https://github.com/hacknlove/isDifferent#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"jest-puppeteer": "^4.4.0",
"puppeteer": "^5.2.1",
"rollup": "^2.26.8",
"rollup-plugin-terser": "^7.0.1"
},
"dependencies": {}
}