forked from Sellsuki/thai-address-database
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "thai-address-database",
"version": "1.0.1",
"description": "",
"main": "src/index.js",
"engines": {
"node": ">=4.2.4"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"migrate:en": "LANG=en node ./database/migrate/index.js",
"migrate:th": "LANG=th node ./database/migrate/index.js",
"migrate": "yarn migrate:en && yarn migrate:th",
"test": "mocha --reporter spec",
"prepublish": "node_modules/babel-cli/bin/babel.js src --out-dir lib",
"lint": "eslint --ext .js src test",
"deploy": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sellsuki/thai-address-database.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sellsuki/thai-address-database/issues"
},
"homepage": "https://github.com/Sellsuki/thai-address-database#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^3.0.0",
"mocha": "^3.4.2"
},
"dependencies": {
"convert-excel-to-json": "^1.2.1",
"csv-parser": "^2.3.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"wordcut": "^0.8.1"
}
}