-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 920 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": "shutterstock-mold",
"version": "1.0.1",
"description": "Easy dependency injection",
"repository": "https://github.com/shutterstock/mold",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"build": "babel lib -d dist",
"lint": "eslint lib test",
"prepublishOnly": "npm run build"
},
"author": "John Dean <[email protected]>",
"license": "MIT",
"dependencies": {
"@captemulation/get-parameter-names": "^1.3.0",
"lodash.difference": "^4.5.0",
"lodash.union": "^4.6.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.8",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"mocha": "^8.2.1"
}
}