forked from 6eDesign/timeUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.26 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": "1.1.5",
"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": "node_modules/.bin/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.0.84",
"npm-run-all": "^4.1.5",
"rollup": "^0.67.4",
"rollup-plugin-buble": "^0.19.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"standard-version": "^4.4.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
}
}