-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "talk-like-a",
"version": "2.0.0",
"description": "Transform normal English text in various funny ways",
"homepage": "https://agwells.github.io/talk-like-a",
"files": [
"/dist/",
"/original/filters.6",
"/original/debian/copyright"
],
"keywords": [
"humor",
"pirate",
"chef",
"b1ff",
"scramble",
"filters",
"talkfilters"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --watch './tests/index.test.ts'",
"test:original": "jest --watch './tests/against-originals.test.ts'",
"make-test-data": "$NODE ./tests/make-test-data.js",
"compile-and-make-test-data": "make -C original clean && make -C original all && $NODE ./tests/make-test-data.js",
"clean-originals": "make -C original clean",
"clean": "rm -Rf dist",
"build": "npm run clean && tsc && rm -Rf dist/tests"
},
"repository": {
"type": "github",
"url": "agwells/talk-like-a"
},
"author": "Aaron Wells",
"license": "SEE LICENSE IN original/debian/copyright",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"babel-jest": "^29.6.2",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"jest": {
"roots": [
"src",
"tests"
]
}
}