-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "lc4",
"version": "3.0.21",
"description": "A spec-compliant LC4 and LS47 encryption/decryption library",
"main": "./lib/main.js",
"scripts": {
"build:node": "npx babel src -s --no-comments --out-dir lib",
"build:browser": "npx babel src -s --no-comments --no-babelrc --config-file ./.babel-browser --out-dir dist",
"build": "npm run build:node && npm run build:browser && npm run docs",
"prepare": "npm run build",
"test": "npx mocha --require @babel/register --recursive --parallel",
"docs": "jsdoc2md src/main.js > docs/docs.md && jsdoc2md src/*.js > docs/dev.md",
"lint": "npx prettier --check ."
},
"keywords": [
"lc4",
"encryption",
"elsiefour"
],
"author": "Ulysse McConnell",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/umcconnell/lc4.git"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"jsdoc-to-markdown": "^9.0.0",
"mocha": "^10.0.0",
"prettier": "^3.0.0"
}
}