forked from apostrophecms/random-words
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 913 Bytes
/
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
{
"name": "random-words-commonjs",
"version": "2.0.1",
"description": "Generate one or more common English words",
"main": "./cjs/index.js",
"module": "index.js",
"exports": {
"import": "./index.js",
"require": "./cjs/index.js"
},
"types": "index.d.ts",
"type": "module",
"scripts": {
"test": "mocha tests/test.js",
"build-cjs": "babel index.js --out-file cjs/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:apostrophecms/random-words.git"
},
"keywords": [
"random",
"words",
"words",
"word",
"generator",
"sample",
"text"
],
"author": "Apostrophe Technologies",
"license": "MIT",
"dependencies": {
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"mocha": "^10.2.0",
"typescript": "^5.6.2"
}
}