This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.55 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
59
60
61
{
"name": "parse-xsd-duration",
"version": "0.5.0",
"description": "Parse XSD durations to seconds",
"main": "dist/index.js",
"author": {
"name": "Mick Dekkers",
"email": "mickdekkersnl@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mickdekkers/parse-xsd-duration.git"
},
"bugs": {
"url": "https://github.com/mickdekkers/parse-xsd-duration/issues"
},
"homepage": "https://github.com/mickdekkers/parse-xsd-duration#readme",
"scripts": {
"dev": "run-p dev:babel dev:lint",
"dev:babel": "babel src --out-dir dist --source-maps --watch",
"dev:test": "ava --watch",
"dev:lint": "esw src --watch",
"build": "babel src --out-dir dist --source-maps",
"test": "ava",
"lint": "eslint src",
"fmt": "prettier --write \"**/*.{js,json,yml,yaml}\""
},
"files": [
"dist",
"yarn.lock"
],
"keywords": [
"xsd",
"duration",
"date",
"time",
"datetime",
"parser",
"xml",
"node",
"browser",
"umd"
],
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.3.3",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^3.0.1",
"npm-run-all": "^4.0.2",
"prettier": "^1.14.2"
}
}