-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.7 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "craftyjs-tiled",
"main": "src/craftyjs-tiled.js",
"description": "TBA",
"license:": "MIT",
"scripts": {
"flow": "flow",
"lint": "eslint .",
"test": "jest"
},
"jest": {
"coverageDirectory": ".coverage/"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-jest": "^13.2.2",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"craftyjs": "^0.7.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-flowtype": "^2.3.1",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-react": "^5.2.2",
"flow-bin": "^0.29.0",
"jest-cli": "^13.2.3"
},
"dependencies": {
"tmx-parser": "git+https://github.com/geppetto-apps/node-tmx-parser.git#fix-object-property-types"
},
"jspm": {
"name": "craftyjs-tiled",
"main": "src/craftyjs-tiled.js",
"dependencies": {},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.12"
},
"peerDependencies": {
"assert": "github:jspm/nodelibs-assert@^0.2.0-alpha",
"buffer": "github:jspm/nodelibs-buffer@^0.2.0-alpha",
"child_process": "github:jspm/nodelibs-child_process@^0.2.0-alpha",
"constants": "github:jspm/nodelibs-constants@^0.2.0-alpha",
"craftyjs": "github:craftyjs/Crafty-Distro@nightlies",
"crypto": "github:jspm/nodelibs-crypto@^0.2.0-alpha",
"events": "github:jspm/nodelibs-events@^0.2.0-alpha",
"fs": "github:jspm/nodelibs-fs@^0.2.0-alpha",
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha",
"stream": "github:jspm/nodelibs-stream@^0.2.0-alpha",
"string_decoder": "github:jspm/nodelibs-string_decoder@^0.2.0-alpha",
"tmx-parser": "npm:tmx-parser@^1.4.0",
"util": "github:jspm/nodelibs-util@^0.2.0-alpha",
"vm": "github:jspm/nodelibs-vm@^0.2.0-alpha",
"zlib": "github:jspm/nodelibs-zlib@^0.2.0-alpha"
},
"overrides": {
"github:craftyjs/Crafty-Distro@nightlies": {
"main": "crafty.js",
"meta": {
"crafty.js.js": {
"exports": "Crafty",
"format": "global"
}
}
},
"npm:[email protected]": {
"dependencies": {
"readable-stream": "^2.0.2",
"pako": "~0.2.0"
},
"map": {
"_stream_transform": "readable-stream/transform"
}
},
"npm:[email protected]": {
"ignore": [
"test.js"
]
}
}
}
}