-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 964 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
{
"devDependencies": {
"@types/escape-string-regexp": "^1.0.0",
"csv-parse": "^3.1.3",
"jest": "^23.6.0",
"typescript": "^3.1.4"
},
"dependencies": {
"escape-string-regexp": "^1.0.5"
},
"files": [
"lib"
],
"main": "./lib/index",
"typings": "./lib/index.d.ts",
"name": "transaction-parser-th",
"description": "A JS library that can be used to parse transaction information from SMS messages.",
"version": "0.1.1",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jest",
"prepare": "rm -rf lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtinth/transaction-parser-th.git"
},
"author": "Thai Pangsakulyanont <[email protected]> (http://dt.in.th/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtinth/transaction-parser-th/issues"
},
"homepage": "https://github.com/dtinth/transaction-parser-th#readme"
}