-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
61
62
63
64
65
66
67
{
"author": "Akhil Pillai <[email protected]>",
"browser": "dist/webpack.js",
"bugs": {
"url": "https://github.com/akpi816218/pronouns.js/issues"
},
"contributors": [
{
"email": "[email protected]",
"name": "Akhil Pillai"
}
],
"dependencies": {
"@types/eslint": "^8.44.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"eslint": "^8.45.0"
},
"description": "A simple pronoun and gender system for JS & TS, including support for custom pronouns.",
"devDependencies": {
"@types/node": "^20.4.5",
"docma": "^3.2.2",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"webpack-cli": "^5.1.4"
},
"homepage": "https://pronouns.js.org/",
"jsdelivr": "dist/webpack.js",
"keywords": [
"pronoun",
"pronouns",
"gender",
"nonbinary",
"enby",
"non-binary",
"trans",
"transgender",
"polygender",
"agender",
"demigender",
"genderfluid",
"queer",
"genderqueer"
],
"license": "MIT",
"main": "dist/index.js",
"name": "pronouns.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/akpi816218/pronouns.js.git"
},
"scripts": {
"build": "npm run lint && npm run compile && npm run docs:build",
"compile": "\\rm -drf dist types && npx tsc && npm run format && npm run webpack",
"docs:build": "\\rm -drf docs ; npx docma -c docma.config.jsonc",
"docs:dev": "npm run docs:build && npm run docs:serve",
"docs:serve": "npx docma serve docs",
"format": "npx prettier -w ./*.* src types",
"lint": "npx tsx eslint.ts",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\"",
"webpack": "npx webpack -c webpack.config.js"
},
"type": "module",
"types": "types/index.d.ts",
"unpkg": "dist/webpack.js",
"version": "3.3.3"
}