-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 747 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 747 Bytes
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
{
"name": "duplicate-remover",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --format 'node_modules/eslint-friendly-formatter' --ext .js ./src ./specs",
"test": "NODE_ENV=test webpack --progress --colors && node dist/test/bundle.js"
},
"author": "me",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
}
}