-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.12 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
{
"version": "1.0.0",
"name": "pulsar-date-picker",
"description": "Accessible single date picker.",
"homepage": "https://github.com/jadu/pulsar-date-picker",
"author": "James Jacobs <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/jadu/pulsar-date-picker.git"
},
"bugs": {
"url": "http://github.com/jadu/pulsar/issues"
},
"main": "./src/index.js",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"scripts": {
"coverage": "mochify --transform [ babelify ] --plugin [ mochify-istanbul --exclude '**/+(tests|node_modules|libs)/**/*' --report lcov --dir ./coverage --instrumenter babel-istanbul] --reporter spec ./tests/harness/common './tests/unit/**/*Test.js'",
"jshint": "jshint .",
"mocha": "mochify -r ./test/harness --recursive --reporter spec",
"test": "npm run test:headless",
"test:headless": "mochify --reporter spec --transform [ babelify ] ./tests/harness/common './tests/unit/**/*Test.js'"
},
"dependencies": {
"jquery": "^3.7.0",
"jquery-ui": "^1.13.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-istanbul": "^0.12.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^17.0.0",
"browserify-istanbul": "^2.0.0",
"browserify-shim": "^3.8.16",
"chai": "^4.3.6",
"chai-dom": "^1.11.0",
"chai-hiff": "^1.0.0",
"dart-sass": "^1.25.0",
"growl": ">=1.10.0",
"grunt": "^1.6.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-sass": "^3.1.0",
"jshint": "^2.13.6",
"matchdep": "^2.0.0",
"minimatch": "^9.0.1",
"mocha": "^10.2.0",
"mochify": "^9.2.0",
"mochify-istanbul": "^2.4.2",
"sinon": "^2.4.1",
"sinon-chai": "^2.8.8",
"sinon-jquery": "^1.0.3"
},
"license": "MIT",
"directories": {
"test": "tests"
},
"keywords": [
"jadu",
"pulsar",
"date-picker"
]
}