-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "@ariya/tebakmasa",
"version": "1.1.0",
"main": "index.js",
"description": "Infer the date and time from the general description in Bahasa Indonesia",
"scripts": {
"test": "npm run unit-tests && npm run check-format",
"unit-tests": "jasmine",
"check-format": "prettier --check \"**/*.js\"",
"format-code": "prettier --write \"**/*.js\""
},
"author": "Ariya Hidayat",
"license": "MIT",
"files": [
"index.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/ariya/tebakmasa.git"
},
"homepage": "https://ariya.github.io/tebakmasa",
"keywords": [
"nlp",
"bahasa",
"indonesia",
"bahasa-indonesia",
"date",
"time",
"timestamp"
],
"engines": {
"node": ">=4.2.0"
},
"devDependencies": {
"jasmine": "~4.5.0",
"prettier": "~2.8.8"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"quoteProps": "consistent",
"singleQuote": true,
"trailingComma": "none"
}
}