-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
58 lines (58 loc) · 1.65 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
52
53
54
55
56
57
58
{
"name": "moment-parseformat",
"description": "A moment.js plugin to extract the format of a date/time string",
"scripts": {
"start": "npm run build:demo && beefy ./index.js --cwd=./demo",
"prebuild": "rimraf dist && mkdirp dist",
"build": "browserify index.js -s moment-parseformat -o dist/moment-parseformat.js",
"build:demo": "browserify index.js -s moment-parseformat -o demo/moment-parseformat.js",
"deploy": "npm run build:demo && npm run deploydocs",
"predeploydocs": "./bin/authorize-push.js",
"deploydocs": "gh-pages-deploy",
"pretest": "standard",
"test": "npm run -s test:node | tap-spec",
"test:coverage": "istanbul cover test/moment-parseformat-test.js",
"test:node": "node test/moment-parseformat-test.js",
"presemantic-release": "npm run build",
"semantic-release": "semantic-release"
},
"files": [
"lib",
"dist",
"index.js"
],
"repository": "github:gr2m/moment-parseformat",
"author": "Gregor Martynus <[email protected]>",
"license": "MIT",
"homepage": "http://gr2m.github.io/moment-parseformat",
"devDependencies": {
"beefy": "^2.1.5",
"browserify": "^16.0.0",
"gh-pages-deploy": "^0.5.0",
"istanbul": "^0.4.0",
"istanbul-coveralls": "^1.0.1",
"mkdirp": "^1.0.0",
"moment": "^2.10.6",
"rimraf": "^3.0.0",
"semantic-release": "^17.0.0",
"standard": "^16.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"keywords": [
"momentjs",
"date",
"parse",
"format"
],
"gh-pages-deploy": {
"staticpath": "demo",
"noprompt": true
},
"standard": {
"ignore": [
"demo"
]
},
"version": "1.0.0"
}