-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "sentence-engine",
"version": "0.8.0",
"description": "Sentence generator focused on versatility and user control.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"eslint": "eslint ./src/**/*.ts",
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run rollup",
"build:cjs": "tsc -p tsconfig.build.json --module commonjs --outDir dist",
"build:es": "tsc -p tsconfig.build.json --module esnext --outDir dist/es",
"rollup": "npm run rollup:rename && npm run rollup:move",
"rollup:rename": "renamer --find js --replace mjs \"dist/es/**\"",
"rollup:move": "cp -r dist/es/* dist && rm -rf dist/es",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/sindrekjr/sentence-engine.git"
},
"keywords": [
"sentence",
"sentences",
"sentence-generator",
"text-generator",
"template-engine",
"template",
"vocabulary",
"random"
],
"author": "sindrekjr",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/sindrekjr/sentence-engine/issues"
},
"homepage": "https://github.com/sindrekjr/sentence-engine#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.5.0",
"eslint-plugin-jest": "^23.18.0",
"jest": "^25.5.4",
"jest-mock-random": "^1.1.0",
"renamer": "^2.0.1",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=12.0.0"
},
"jest": {
"preset": "ts-jest"
}
}