-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "asdfjkl",
"version": "0.0.7",
"description": "Determines if text contains gibberish.",
"main": "lib/asdfjkl.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run compile && mocha --require @babel/register",
"compile": "babel -d lib/ src/ && echo '{}' > lib/model.json && chmod +x lib/cli.js && lib/cli.js --train",
"prepare": "npm run compile"
},
"bin": {
"asdfjkl": "lib/cli.js"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/leonelgalan/asdfjkl.git"
},
"keywords": [
"gibberish",
"lorem",
"ipsum",
"language"
],
"author": "Leonel Galán <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0"
},
"dependencies": {
"commander": "^9.4.1",
"core-js": "^3.26.1",
"lodash": "^4.17.21"
},
"runkitExampleFilename": "runkit.js"
}