-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
49
50
{
"name": "ddd-deep-equal",
"version": "1.0.5",
"description": "A utility function for checking deep equality",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:travis": "npm run lint && npm run test && npm run type:check",
"bundle": "webpack --mode=production",
"build:typescript": "tsc",
"build:js": "npm run build:typescript && npm run bundle",
"build": "npm run lint && npm run test && npm run build:js",
"lint": "eslint . --max-warnings 0 --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"type:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doddydigitaldesign/ddd-deep-equal.git"
},
"keywords": [
"equal",
"deep equal",
"object comparison"
],
"bugs": {
"url": "https://github.com/doddydigitaldesign/ddd-deep-equal/issues"
},
"homepage": "https://github.com/doddydigitaldesign/ddd-deep-equal#readme",
"author": "Daniel Sonne Lehnberg <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"postinstall": "npx tsc"
}