-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.78 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "cockpit-orm",
"version": "0.4.0",
"description": "ORM for Cockpit Headless CMS",
"main": "lib/index.js",
"scripts": {
"preversion": "npm run test && npm run build",
"prepublishOnly": "npm run test && npm run build",
"build": "rm -rf lib/* && babel src --out-dir lib",
"dev": "rm -rf lib/* && babel --watch src --out-dir lib --source-maps",
"test": "eslint src && jest ."
},
"keywords": [
"cockpit",
"ORM",
"browser",
"headless"
],
"author": "Bruno Lourenço",
"license": "MIT",
"peerDependencies": {
"cockpit-sdk": "^0.15.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-react-app": "^7.0.2",
"cockpit-sdk": "^0.15.1",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react-app": "^3.0.8",
"eslint-config-skeleton": "^0.1.6",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"is-empty": "^1.2.0",
"jest": "^24.5.0",
"lodash": ">=4.17.11",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"prettier": "^1.16.4",
"prettier-eslint": "^8.8.2"
},
"dependencies": {},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ginetta/cockpit-orm.git"
},
"bugs": {
"url": "https://github.com/ginetta/cockpit-orm/issues"
},
"homepage": "https://github.com/ginetta/cockpit-orm#readme"
}