forked from GetmeUK/manhattan-js-field-filled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.76 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
{
"name": "manhattan-field-filled",
"version": "1.0.1",
"description": "Dispatch a 'filled' and 'empty' event against text inputs, selects and textareas whenever the field is filled or emptied.",
"engines": {
"node": ">=8.9.4"
},
"main": "umd/index.js",
"module": "module/index.js",
"files": [
"module",
"umd"
],
"scripts": {
"build": "webpack --mode production || exit 0",
"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": "[email protected]:GetmeUK/manhattan-js-field-filled.git"
},
"keywords": [
"manhattan",
"autofill"
],
"author": "Anthony Blackshaw",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.18.1",
"jsdom": "^11.6.2",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.4.1",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.9"
},
"dependencies": {
"manhattan-essentials": "^1.0.0"
}
}