-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "@gopuff/timecapsulejs",
"version": "1.2.0",
"description": "A powerful time query library for timeboxing your features using a simple interface resembling a natural time capsule. Working with time and time zones has never been easier.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gopuff/timecapsule.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gopuff/timecapsule/issues"
},
"homepage": "https://github.com/gopuff/timecapsule#readme",
"scripts": {
"test": "nyc --reporter=cobertura mocha",
"lint": "eslint .",
"build": "npx parcel build lib/index.js",
"release": "npm run release:create && npm run release:publish",
"release:create": "standard-version",
"release:publish": "git push --follow-tags origin master"
},
"dependencies": {
"luxon": "^1.25.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"sinon": "^9.2.1",
"sinon-test": "^3.0.0"
}
}