-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.24 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
{
"name": "timeUtils",
"version": "2.0.0",
"description": "timeUtils.js - Time/date formatter for JavaScript which uses PHP-like syntax to easily format JavaScript date objects into legible, formatted, & human-consumable strings.",
"main": "dist/timeUtils.cjs.js",
"module": "dist/timeUtils.esm.js",
"browser": "dist/timeUtils.esm.js",
"scripts": {
"build": "env buildTarget=prod node_modules/.bin/rollup -c",
"release": "npm run build && standard-version && git push --follow-tags origin master",
"executeTests": "tape -r esm tests/*.js | tap-spec",
"test": "npm run build && npm run executeTests",
"watch": "./node_modules/.bin/rollup -c -w"
},
"repository": {
"type": "git",
"url": "https://github.com/6eDesign/timeUtils.git"
},
"author": "Jonathan Greenemeier",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/6eDesign/timeUtils/issues"
},
"devDependencies": {
"esm": "^3.2.25",
"npm-run-all": "^4.1.5",
"rollup": "^0.67.4",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.3",
"standard-version": "^4.4.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
}
}