-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "manhattan-time-picker",
"version": "1.0.5",
"description": "Time parsing and picking for form fields.",
"engines": {
"node": ">=10.16.0"
},
"main": "umd/index.js",
"module": "module/index.js",
"files": [
"module",
"umd"
],
"scripts": {
"build": "webpack --mode production || exit 0",
"build-css": "node-sass --include-path scss scss/time_picker.scss spec/time-picker.css",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"dev-build": "webpack --mode development || exit 0",
"lint": "eslint module spec *.js --quiet || exit 0",
"test": "cross-env NODE_ENV=test nyc mocha ./spec/**/*.spec.js || exit 0",
"watch": "webpack --mode development --watch || exit 0"
},
"nyc": {
"exclude": [
"spec/setup.js",
"spec/**/*.spec.js"
],
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git@github.com:GetmeUK/manhattan-js-time-picker.git"
},
"keywords": [
"manhattan",
"time field",
"time parser",
"time picker",
"time parser"
],
"author": "Anthony Blackshaw",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/register": "7.5.5",
"babel-loader": "8.0.5",
"babel-plugin-istanbul": "5.2.0",
"chai": "4.2.0",
"coveralls": "3.0.4",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-loader": "2.1.2",
"jsdom": "16.2.2",
"manhattan-essentials": "1.0.0",
"mocha": "6.2.0",
"mocha-lcov-reporter": "1.3.0",
"node-sass": "^4.7.2",
"npm": "^6.14.3",
"nyc": "14.1.1",
"sinon": "7.3.2",
"sinon-chai": "3.3.0",
"webpack": "4.34.0",
"webpack-cli": "3.2.1"
},
"dependencies": {
"manhattan-essentials": "^1.0.0"
}
}