-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "scanthng",
"version": "4.14.0",
"description": "evrythng.js plugin for recognising products in a web app.",
"main": "dist/scanthng.js",
"scripts": {
"lint": "eslint --max-warnings 0 --ext .js ./src",
"build": "npm run lint && webpack --config webpack.config.js --mode production",
"build:dev": "webpack --config webpack.config.js --mode development",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evrythng/scanthng.js.git"
},
"author": "EVRYTHNG Ltd. <support@evrythng.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/evrythng/scanthng.js/issues"
},
"homepage": "https://github.com/evrythng/scanthng.js#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1"
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"mocha": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"no-console": 0,
"no-alert": 0,
"no-param-reassign": [
"error",
{
"props": false
}
]
},
"globals": {
"evrythng": "readonly",
"ScanThng": "readonly",
"DigimarcDetector": "readonly"
}
},
"eslintIgnore": [
"node_modules",
"dist",
"test/feature"
]
}