-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "trim-words",
"version": "2.0.0",
"description": "Trims text to a certain number of words.",
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"LICENSE",
"index.js",
"test/runkitExample.js",
"types/index.d.ts"
],
"scripts": {
"build": "rm -f index.js && tsc",
"lint": "eslint .",
"lint:js": "eslint . --ext .js",
"lint:ts": "eslint . --ext .ts",
"test": "mocha test/all.js && npx tsd",
"test:trim": "mocha test/all.js",
"test:tsd": "npx tsd"
},
"repository": {
"type": "git",
"url": "https://github.com/samiahmedsiddiqui/trim-words.git"
},
"keywords": [
"trim",
"words",
"wp_trim_words",
"react",
"wordpress"
],
"author": "Sami Ahmed Siddiqui <[email protected]> (https://www.yasglobal.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/samiahmedsiddiqui/trim-words/issues"
},
"homepage": "https://github.com/samiahmedsiddiqui/trim-words#readme",
"runkitExampleFilename": "test/runkitExample.js",
"dependencies": {
"trim-php": "^2.0.0"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"mocha": "^8.3.2",
"tsd": "^0.14.0",
"typescript": "^4.2.3"
}
}