-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
73 lines (73 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "cozy-client-js",
"version": "0.21.0",
"description": "Javascript library to interact with a cozy",
"main": "dist/cozy-client.node.js",
"browser": "dist/cozy-client.js",
"files": [
"dist",
"docs"
],
"scripts": {
"build:web": "NODE_TARGET=web webpack",
"build:web:min": "NODE_ENV=production NODE_TARGET=web webpack",
"build:node": "NODE_ENV=production NODE_TARGET=node webpack",
"build": "npm-run-all --parallel 'build:*' 'build:*:*'",
"lint": "eslint '{src,test}/**/*.{js,jsx}'",
"prettier": "prettier --write '{src,test}/**/*.{js,jsx}' && eslint --fix '{src,test}/**/*.{js,jsx}'",
"watch": "NODE_ENV=development NODE_TARGET=web webpack --watch",
"test": "npm-run-all 'test:*'",
"test:unit": "NODE_ENV=test NODE_TARGET=node mocha-webpack 'test/unit/**.js'",
"test:v3": "NODE_ENV=test NODE_TARGET=node COZY_STACK_VERSION=3 COZY_STACK_URL=http://localhost:8080 mocha-webpack 'test/integration/**.js'",
"clean": "rm -r dist .tmp",
"shasum": "shasum -a 256 dist/cozy-client.min.js && shasum -a 256 dist/cozy-client.min.js.map"
},
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-client-js.git"
},
"keywords": [
"cozy",
"api",
"v2",
"v3"
],
"author": "cozycloud.cc",
"license": "MIT",
"bugs": {
"url": "https://github.com/cozy/cozy-client-js/issues"
},
"homepage": "https://github.com/cozy/cozy-client-js",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-polyfill": "^6.26.0",
"babel-preset-cozy-app": "^0.3.2",
"btoa": "1.2.1",
"chai": "3.5.0",
"eslint": "^4.19.1",
"eslint-config-cozy-app": "^0.5.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.7.0",
"fetch-mock": "5.5.0",
"mocha": "6.1.4",
"mocha-webpack": "1.1.0",
"npm-run-all": "^4.0.2",
"pouchdb-adapter-memory": "7.0.0",
"prettier": "^1.12.1",
"should": "11.1.1",
"sinon": "^2.1.0",
"source-map-support": "0.4.5",
"webpack": "3.12.0",
"webpack-node-externals": "1.7.2"
},
"dependencies": {
"core-js": "^3.6.5",
"cross-fetch": "^3.0.6",
"pouchdb-browser": "7.0.0",
"pouchdb-find": "7.0.0"
},
"peerDependencies": {
"babel-polyfill": "^6.26.0"
}
}