-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 856 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 856 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
26
27
28
29
30
31
32
33
34
35
{
"name": "zeva",
"version": "1.0.2",
"main": "lib/index.js",
"author": "Kai Curry <kai@twigmarine.com>",
"license": "MIT",
"scripts": {
"compile": "babel src --out-dir lib --ignore '**/*.test.js'",
"prepublish": "npm run compile",
"test": "jest --watch"
},
"jest": {
"modulePathIgnorePatterns": [
"lib"
]
},
"dependencies": {
"lodash": "^4.17.21",
"nori-can": "^2.13.1",
"prairie": "^3.12.2",
"understory": "^1.13.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"jest": "^26.6.3"
}
}