-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 848 Bytes
/
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
{
"name": "amazon-sold-from",
"description": "Show country flags on each product in Amazon.",
"version": "0.2.0",
"license": "Apache-2.0",
"repository": "https://github.com/ykmr1224/amazon-sold-from",
"homepage": "https://github.com/ykmr1224/amazon-sold-from",
"dependencies": {},
"devDependencies": {
"chai": "^4.2",
"mocha": "^5.2",
"nyc": "^14.1.1",
"sinon": "^7.2",
"sinon-chai": "^3.3"
},
"engines": {
"node": "10.17"
},
"files": [
"src/",
"images/",
"manifest.json"
],
"scripts": {
"clean": "rm -rf ./build ./.nyc_output",
"test": "nyc mocha ./tst/",
"build": "mkdir -p build/pkg && cp -r src images manifest.json build/pkg",
"package": "(cd build/pkg && zip -r ../${npm_package_name}_${npm_package_version}.zip *)",
"echo": "echo ${npm_package_name}"
}
}