-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.23 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
45
46
47
48
49
50
51
{
"name": "strtime",
"version": "1.1.2",
"description": "Comprehensive strftime and strptime implementation.",
"keywords": [
"strftime",
"strptime",
"time",
"timestamp",
"date",
"datetime",
"format",
"string"
],
"homepage": "https://github.com/pineapplemachine/strtime-js",
"license": "MIT",
"dependencies": {},
"main": "dist/strtime.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/pineapplemachine/strtime-js.git"
},
"bugs": {
"url": "https://github.com/pineapplemachine/strtime-js/issues"
},
"contributors": [
{
"name": "Sophie Kirschner",
"email": "[email protected]"
}
],
"scripts": {
"build": "node bin/build.js",
"test": "npm run test-source",
"test-all": "npm run test-source && npm run test-release && npm run test-uglified",
"test-source": "node test/source-test.js",
"test-release": "node test/release-test.js",
"test-uglified": "node test/uglified-test.js",
"prepublish": "npm run build && npm run test-all"
},
"devDependencies": {
"canary-test": "^1.0.2",
"dayjs": "^1.6.2",
"luxon": "^1.2.1",
"moment": "^2.22.1",
"uglify-es": "^3.3.9"
}
}