-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.75 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
87
88
89
90
91
92
93
{
"name": "react-modular-map",
"version": "0.0.3",
"description": "Modular ReactJS Map (use with providers)",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"clean": "rm -rf lib lib_es6 umd __tmp__",
"lint": "$(npm bin)/tslint",
"prepublish": "npm run clean && npm run build",
"serve_examples": "$(npm bin)/webpack-dev-server --config examples/webpack.config.js",
"watch:build_commonjs": "npm run clean && node_modules/.bin/tsc --project tsconfig_lib.json --watch",
"build_umd": "npm run clean && node_modules/.bin/tsc --module umd --outdir umd",
"build_ts_lib_es6": "$(npm bin)/typings install && $(npm bin)/tsc",
"lib_es6_to_lib": "$(npm bin)/babel lib_es6 -d lib && $(npm bin)/copyfiles -u 1 'lib_es6/*.d.ts' lib && $(npm bin)/copyfiles -u 1 'lib_es6/**/*.d.ts' lib",
"build": "npm run build_ts_lib_es6 && npm run lib_es6_to_lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devdoomari/react-map.git"
},
"keywords": [
"react",
"map"
],
"author": "devdoomari@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/devdoomari/react-map/issues"
},
"homepage": "https://github.com/devdoomari/react-map#readme",
"dependencies": {
"eventemitter2": "^1.0.1",
"keymirror": "^0.1.1",
"lodash": "^4.9.0",
"node-uuid": "^1.4.7",
"q": "^1.4.1",
"rxjs": "^5.0.0-rc.1"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"autoprefixer": "^6.1.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.3.17",
"babel-jest": "^10.0.1",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"codemirror": "^5.9.0",
"component-playground": "^1.2.0",
"copyfiles": "^0.2.1",
"core-decorators": "^0.12.2",
"enzyme": "^2.2.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-jasmine": "^1.8.1",
"eslint-plugin-react": "^4.3.0",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.7.0",
"jest-cli": "^12.0.2",
"raw-loader": "^0.5.1",
"react-bootstrap": "^0.28.5",
"react-map-mock": "git+https://github.com/devdoomari/react-map-mock.git#dist_5",
"ts-loader": "^0.8.2",
"tslint": "^3.7.4",
"typescript": "^2.0.6",
"typings": "^1.5.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"webpack-hot-middleware": "^2.6.0"
},
"jest": {
"testFileExtensions": [
"js",
"jsx",
"es6"
],
"moduleFileExtensions": [
"js",
"jsx",
"es6"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules",
"<rootDir>/src"
]
}
}