nearly publishable
Showing
- .editorconfig 14 additions, 0 deletions.editorconfig
- .gitignore 2 additions, 2 deletions.gitignore
- CI/build.js 19 additions, 9 deletionsCI/build.js
- npm/package.json 6 additions, 1 deletionnpm/package.json
- package-lock.json 8896 additions, 0 deletionspackage-lock.json
- package.json 37 additions, 10 deletionspackage.json
- src/crypto.mjs 2 additions, 2 deletionssrc/crypto.mjs
- src/crypto.test.js 0 additions, 33 deletionssrc/crypto.test.js
- src/crypto.test.mjs 32 additions, 0 deletionssrc/crypto.test.mjs
- src/dictionaryBuilder.test.js 0 additions, 63 deletionssrc/dictionaryBuilder.test.js
- src/dictionaryBuilder.test.mjs 65 additions, 0 deletionssrc/dictionaryBuilder.test.mjs
.editorconfig
0 → 100644
package-lock.json
0 → 100644
source diff could not be displayed: it is too large. Options to address this: view the blob.
... | ... | @@ -16,14 +16,14 @@ |
"test:dev": "run-p test:dev:**", | ||
"test:dev:qualityCheck": "xo", | ||
"test:dev:runTests": "ava", | ||
"test:dev:duplication": "jscpd", | ||
"test:dev:duplication": "jscpd ./ -s", | ||
"test:production": "run-s test:production:**", | ||
"test:production:qualityCheck": "xo", | ||
"test:production:duplication": "jscpd", | ||
"test:production:complexity-report": "./node_modules/.bin/es6-plato -r -d generated/complexity-report src", | ||
"test:production:test2npm": "cp src/*.test.js generated/npm/", | ||
"test:production:runTests": "cd generated/npm/ && nyc ava", | ||
"test:production:clean": "rm generated/npm/*.test.js" | ||
"test:production:duplication": "jscpd ./", | ||
"xtest:production:complexity-report": "./node_modules/.bin/es6-plato -r -d generated/plato-complexity-report ./**/*.mjs", | ||
"test:production:test2npm": "cp src/*.test.mjs generated/npm/", | ||
"test:production:runTests": "cd generated/npm/ && c8 ava", | ||
"test:production:clean": "rm generated/npm/*.test.mjs" | ||
}, | ||
"dependencies": { | ||
"scrypt-async-modern": "^3.0.12", | ||
... | ... | @@ -31,18 +31,45 @@ |
}, | ||
"devDependencies": { | ||
"ava": "^3.14.0", | ||
"es6-plato": "^1.2.3", | ||
"jscpd": "^3.3.22", | ||
"jscpd-badge-reporter": "^1.1.3", | ||
"mkdirp": "^1.0.4", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.1.0", | ||
"c8": "^7.3.5", | ||
"rollup": "^2.34.2", | ||
"xo": "^0.36.1" | ||
}, | ||
"ava": {}, | ||
"disabledDependenciesTODOAddComplexityQualityCheck": { | ||
"es6-plato": "^1.2.3", | ||
"code-forensics": "^2.3.1", | ||
"codehawk-cli": "^6.0.3" | ||
}, | ||
"ava": {}, | ||
"jscpd": { | ||
"threshold": 0.1, | ||
"reporters": ["html", "console", "badge"], | ||
"reporters": [ | ||
"html", | ||
"console", | ||
"badge" | ||
], | ||
"formatsExts": { | ||
"javascript": [ | ||
"js", | ||
"mjs", | ||
"es6" | ||
], | ||
"json": [ | ||
"json" | ||
], | ||
"yaml": [ | ||
"yml", | ||
"yaml" | ||
], | ||
"markdown": [ | ||
"md" | ||
] | ||
}, | ||
"gitignore": true, | ||
"output": "generated/jscpd/" | ||
} | ||
... | ... |
src/crypto.test.js
deleted
100644 → 0
src/crypto.test.mjs
0 → 100644
src/dictionaryBuilder.test.js
deleted
100644 → 0
src/dictionaryBuilder.test.mjs
0 → 100644
Please register or sign in to comment