This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 2.01 KB
/
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
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
{
"name": "cockpit-sdk",
"version": "0.15.1",
"description": "Javascript SDK for Cockpit headless CMS",
"main": "lib/index.js",
"scripts": {
"preversion": "npm run test && npm run build",
"prepublishOnly": "npm run test && npm run build",
"prebuild": "rm -rf lib/*",
"build": "babel src --ignore '__tests__' --out-dir lib && babel src --ignore '__tests__' --out-file lib/all.js && uglifyjs lib/all.js -m -c -o lib/all.min.js && rm -f lib/all.js",
"dev": "rm -rf lib/* && babel --watch src --out-dir lib --source-maps",
"test": "eslint . && jest src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ginetta/cockpit-sdk.git"
},
"contributors": [
"Michelangelo Partipilo <[email protected]>",
"Bruno Lourenço",
"Artur Heinze"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ginetta/cockpit-sdk/issues"
},
"homepage": "https://github.com/ginetta/cockpit-sdk#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"es6-promise": "^4.1.1",
"isomorphic-fetch": "^2.2.1",
"query-string": "^5.0.1",
"universal-websocket-client": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-jest": "^23.6.0",
"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": "^3.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.0.1",
"eslint-config-skeleton": "^0.1.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"jest": "^23.6.0",
"prettier": "^1.9.2",
"prettier-eslint": "^8.7.0",
"regenerator-runtime": "^0.13.1",
"uglify-js": "^3.2.2"
}
}