-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 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
{
"name": "gtin-cloud",
"version": "1.3.9",
"description": "GTIN cloud storage strategy",
"main": "handler.js",
"scripts": {
"serverless": "node_modules/.bin/serverless",
"sls": "node_modules/.bin/serverless",
"deploy": "npm run lint && sls deploy --stage prod",
"service-info": "sls info --stage prod",
"lint": "eslint --ext .js,.jsx ./",
"lint-fix": "eslint --fix --ext .js,.jsx ./",
"local": "cross-env DEBUG=gtin-cloud SLS_DEBUG=* node_modules/.bin/serverless offline --stage dev",
"test": "cross-env DEBUG=gtin-cloud jest -t --testPathIgnorePatterns debug.test.js",
"test-debug": "cross-env DEBUG=gtin-cloud jest -i tests/debug.test.js"
},
"author": "Tom Noogen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/niiknow/gtin-cloud.git"
},
"dependencies": {
"aws-sdk": "^2.1532.0",
"cheerio": "^1.0.0-rc.12",
"debug": "^4.3.4",
"got": "11.8.5",
"random-useragent": "^0.5.0",
"scrape-it": "^6.1.0",
"source-map-support": "^0.5.21",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/register": "^7.23.7",
"@babel/runtime": "^7.23.8",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-source-map-support": "^2.2.0",
"copy-webpack-plugin": "^12.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.2",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"serverless": "^3.38.0",
"serverless-offline": "^13.3.2",
"serverless-webpack": "^5.13.0",
"webpack": "^5.89.0",
"webpack-node-externals": "^3.0.0"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}