This repository was archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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
{
"name": "js-cloudkit",
"version": "1.1.0",
"description": "Highlevel wrapper for Apples CloudKit",
"main": "dist/module.js",
"scripts": {
"build": "node build/build.js",
"watch": "node build/build.js --watch",
"postinstall": "node build/build.js"
},
"repository": {
"type": "git",
"url": "git@github.com:moritzsternemann/js-cloudkit"
},
"keywords": [
"javascript",
"cloudkit",
"apple",
"schema",
"backend"
],
"author": "Moritz Sternemann <me@moritzsternemann.de>",
"license": "MIT",
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"dependencies": {
"event-emitter-es6": "^1.1.5",
"schema-object": "^4.0.11"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"chalk": "^1.1.3",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"ora": "^1.2.0",
"semver": "^5.3.0",
"shelljs": "^0.7.7",
"webpack": "^2.6.1",
"webpack-merge": "^4.1.0"
}
}