-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1017 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
38
39
40
41
{
"name": "chrono-node",
"description": "A natural language date parser in Javascript",
"homepage": "http://github.com/wanasit/chrono",
"repository": {
"type": "git",
"url": "https://github.com/wanasit/chrono.git"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"license": "MIT",
"version": "1.4.6",
"directories": {
"source": "./src",
"test": "./test"
},
"main": "./dist/chrono.js",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^25.3.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.2",
"jest": "^25.3.0",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"scripts": {
"build": "webpack",
"watch": "jest --watch",
"test": "jest --coverage",
"coveralls": "npm run test && cat coverage/lcov.info | coveralls",
"version": "npm run build && git add -A dist"
},
"dependencies": {
"dayjs": "^1.8.19"
}
}