-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "spannable-string-formatter",
"version": "1.0.0",
"description": "A SpannableString Formatter for JavaScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/ tests/",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hitanshu-dhawan/SpannableStringFormatter.git"
},
"keywords": [
"android",
"android-library",
"span",
"spans",
"spannable",
"spannable-string",
"spannable-string-builder"
],
"author": "Hitanshu Dhawan <hitanshudhawan1996@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hitanshu-dhawan/SpannableStringFormatter/issues"
},
"homepage": "https://github.com/hitanshu-dhawan/SpannableStringFormatter#readme",
"devDependencies": {
"@types/jest": "26.0.10",
"@typescript-eslint/eslint-plugin": "4.0.0",
"@typescript-eslint/parser": "3.9.1",
"eslint": "7.7.0",
"husky": "4.2.5",
"jest": "26.4.2",
"prettier": "2.0.5",
"pretty-quick": "3.0.0",
"ts-jest": "26.2.0",
"typescript": "4.0.2"
}
}