-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "reason-date-fns",
"version": "1.0.2",
"main": "lib/js/src/DateFns.bs.js",
"module": "lib/es6/src/DateFns.bs.js",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"release": "yarn build && yarn demo:test && yarn publish && git push && git push --tags",
"check-js": "node ./lib/js/src/Demo.bs.js",
"demo:bundle": "yarn rollup lib/es6/src/Demo.bs.js --format cjs --file bundle/demo.js",
"demo:test": "yarn demo:bundle && node bundle/demo.js"
},
"keywords": [
"ReasonML",
"Reason",
"date-fns",
"date-fns",
"BuckleScript"
],
"sideEffects": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/dmtrKovalenko/reason-date-fns/issues"
},
"homepage": "https://github.com/dmtrKovalenko/reason-date-fns",
"repository": {
"type": "git",
"url": "https://github.com/dmtrKovalenko/reason-date-fns"
},
"author": {
"name": "Dmitriy Kovalenko",
"email": "[email protected]"
},
"peerDependencies": {
"date-fns": "^2.30.0"
},
"devDependencies": {
"bs-platform": "^9.0.2",
"date-fns": "^2.30.0",
"rollup": "^2.79.2"
}
}