-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "psc-password-strength-calculator",
"version": "1.0.2",
"description": "Package to calculate the strength of a given password",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"lint": "standard",
"format": "prettier-standard --format",
"test": "jest --coverage"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shra1dhar/password-strength.git"
},
"keywords": [
"password",
"password-strength",
"password-strength-meter",
"password-strength-calculator",
"password-strength-estimation"
],
"author": "Shravan Dhar",
"license": "MIT",
"bugs": {
"url": "https://github.com/shra1dhar/password-strength/issues"
},
"homepage": "https://github.com/shra1dhar/password-strength#readme",
"devDependencies": {
"@types/jest": "^24.0.24",
"jest": "^24.9.0",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"standard": "^14.3.1",
"standard-prettier": "^1.0.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"standard": {
"ignore": [
"node_modules/",
"build/"
]
}
}