-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "hardpass",
"version": "0.1.4",
"description": "Lightweight password strength checker that enforces a strong password policy.",
"homepage": "https://github.com/akrawchyk/hardpass",
"main": "dist/hardpass.umd.js",
"module": "dist/hardpass.esm.js",
"typings": "dist/hardpass.d.ts",
"scripts": {
"build": "shx rm -rf dist && git rev-parse HEAD > .commithash && rollup -c && shx cp src/hardpass/types.d.ts dist/hardpass.d.ts",
"fix": "prettier src/**/*.ts test/**/*.ts --write",
"test": "ava",
"prepare": "npm run build"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/*.map"
],
"keywords": [],
"author": "Andrew Krawchyk <[email protected]> (https://github.com/akrawchyk)",
"license": "MIT",
"devDependencies": {
"ava": "^1.1.0",
"prettier": "1.16.1",
"rollup": "^1.1.2",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-typescript": "^1.0.0",
"shx": "^0.3.2",
"ts-node": "^8.0.2",
"tslib": "^1.9.3",
"typescript": "^3.2.4"
}
}