forked from planttheidea/hash-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"author": "planttheidea",
"browser": "dist/hash-it.js",
"browserslist": [
"defaults",
"Explorer >= 9",
"Safari >= 6",
"Opera >= 15",
"iOS >= 8",
"Android >= 4"
],
"bugs": {
"url": "https://github.com/planttheidea/hash-it/issues"
},
"description": "Hash any object based on its value",
"devDependencies": {
"@babel/cli": "7.13.10",
"@babel/core": "7.13.13",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/preset-env": "7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "7.13.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "18.0.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@types/jest": "26.0.22",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"benchmark": "2.1.4",
"eslint": "7.23.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "4.0.2",
"faker": "^5.5.1",
"hash-object": "^0.1.7",
"html-webpack-plugin": "5.3.1",
"husky": "5.2.0",
"jest": "26.6.3",
"node-object-hash": "^2.3.1",
"object-hash": "^2.1.1",
"ora": "5.4.0",
"prop-types": "15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.7",
"rimraf": "3.0.2",
"rollup": "2.43.1",
"rollup-plugin-terser": "7.0.2",
"tslib": "2.1.0",
"typescript": "4.2.3",
"webpack": "5.28.0",
"webpack-cli": "4.6.0",
"webpack-dev-server": "3.11.2"
},
"homepage": "https://github.com/planttheidea/hash-it#readme",
"keywords": [
"hash",
"hashcode",
"object-hash",
"unique"
],
"license": "MIT",
"main": "dist/hash-it.cjs.js",
"module": "dist/hash-it.esm.js",
"name": "hash-it",
"repository": {
"type": "git",
"url": "git+https://github.com/planttheidea/hash-it.git"
},
"scripts": {
"benchmark": "npm run build && node benchmarks/index.js",
"benchmark:compare": "npm run build && node benchmarks/compare.js",
"build": "NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"dev": "NODE_ENV=development webpack serve --progress",
"lint": "NODE_ENV=test eslint src",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run typecheck && npm run lint && npm run test && npm run build",
"start": "npm run dev",
"test": "NODE_ENV=test jest",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"typecheck": "tsc --noEmit"
},
"version": "5.0.0"
}