generated from BuildForSDG/js-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "smart-search",
"version": "0.0.1",
"description": "A simple web app with in-app search magic",
"private": false,
"directories": {
"test": "__tests__"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint \"src/**/*.js\"",
"worker-to-dist": "copyfiles -u 1 src/js/off-main-thread/omt.js dist",
"js-to-dist": "copyfiles -u 1 src/js/*.js dist",
"html-to-dist": "copyfiles -u 1 src/*.html dist",
"imgs-to-dist": "copyfiles -u 1 src/images/favicons/* dist",
"build": "npm run html-to-dist && npm run worker-to-dist && npm run js-to-dist && npm run imgs-to-dist"
},
"author": {
"name": "Charles Odili",
"email": "chaluwa@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"copyfiles": "^2.3.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^25.4.0"
},
"browserslist": [
"last 1 Chrome versions"
],
"dependencies": {}
}