-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.42 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
{
"name": "fictio",
"version": "1.0.0",
"description": "Random fictional names generator using Markov chain written in Typescript.",
"main": "dist/index.js",
"types": "dist/generate/Generator.d.ts",
"module": "src/generate/Generator.ts",
"files": ["dist/**/*"],
"engines": {
"node": ">=10"
},
"scripts": {
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build:js": "webpack --mode=production",
"build": "npm run build:types && npm run build:js",
"example": "npm run build && node ./dist/example-build.js",
"test": "jest"
},
"keywords": ["fictional", "names", "generator", "markov", "chains"],
"author": "Adrian Toșcă",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"eslint": "^7.6.0",
"eslint-config-typescript": "^3.0.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"jest": "^26.3.0",
"jest-mock-extended": "^1.0.9",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}