-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 947 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
{
"name": "titleizejs",
"version": "1.3.2",
"description": "Convert your strings to represent proper titles, rather than generic and random strings",
"repository": "git://github.com/GoudekettingRM/titleize.git",
"scripts": {
"test": "mocha",
"build": "npx google-closure-compiler --js=titleize.js --js_output_file=titleize.min.js --language_out=ECMASCRIPT5_STRICT",
"release": "npm run build && changeset publish",
"changelog": "npx changeset && git add .changeset && git commit -m \"Chore: update changelog\" && git push"
},
"main": "./titleize.min.js",
"types": "./titleize.d.ts",
"keywords": [
"titleize",
"javascript",
"node",
"typescript",
"string"
],
"author": "Robin Goudeketting <[email protected]>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"chai": "^4.2.0",
"mocha": "^9.2.0"
},
"publishConfig": {
"access": "public"
}
}