-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.44 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
{
"name": "@dzek69/password-policy",
"version": "2.0.0",
"main": "src/index.js",
"repository": "https://github.com/dzek69/password-policy.git",
"author": "Jacek Nowacki @dzek69 <git-public@dzek.eu>",
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=testing mocha 'src/**/*.spec.js'",
"docs": "node build-scripts/docs && jsdoc -r src README.md -t node_modules/docdash -d ./docs -u ./tutorials -c jsdoc.json && node build-scripts/docs.after",
"transpile": "node build-scripts/transpile && babel src -d dist --ignore **/*.spec.js*",
"prepublishOnly": "npm run lint && npm run test && npm run docs && npm run demo",
"prepack": "npm run transpile",
"lint": "cross-env eslint --report-unused-disable-directives 'src/**/*.js' 'src/*.js'",
"lint:fix": "npm run lint -- --fix",
"demo": "node build-scripts/demo"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@dzek69/eslint-config-base": "^1.0.1",
"babel-plugin-rewire": "^1.2.0",
"cross-env": "^5.2.0",
"docdash": "^1.1.1",
"eslint": "^6.2.2",
"fs-extra": "^7.0.1",
"husky": "^3.0.4",
"jsdoc": "^3.6.3",
"mocha": "^6.2.0",
"must": "^0.13.4"
},
"libraryTemplate": {
"version": "1.9.0"
},
"husky": {
"hooks": {
"pre-push": "yarn prepublishOnly && yarn transpile"
}
}
}