-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 934 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
32
33
{
"name": "TDD-Word-Search",
"version": "1.0.0",
"description": "package used to solve word searches",
"main": "cmd/main.js",
"scripts": {
"test": "jest .test --watch",
"buildCMD": "npx webpack --config webpack.cmd.config.js",
"searchForWords": "node ./index.js searchForWords",
"buildAndRun": "npm run buildCMD && npm run searchForWords"
},
"repository": {
"type": "git",
"url": "https://github.com/akado117/TDD-Word-Search.git"
},
"author": "Alex Kaidan",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.3.0",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.3.0"
},
"dependencies": {
"lodash": "^4.17.5"
}
}