-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 788 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 788 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
{
"name": "detabase-models",
"version": "0.1.8",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"clean": "rm -rf package",
"createPackage": "npm run clean && npm pack && tar xf detabase-models*.tgz && tree package",
"lint": "npm run eslint",
"test": "node_modules/.bin/mocha tests/*.test.js",
"prettier:cli": "prettier \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write"
},
"author": "Maximiliano Arias",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.0.3"
},
"dependencies": {
"deta": "^1.0.0",
"prettier": "^2.4.1"
}
}