-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
112 lines (112 loc) · 3.29 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "mimic",
"version": "2.0.9",
"description": "Bad ass client side mocking solution",
"main": "./index.js",
"scripts": {
"prestart": "npm install",
"start": "webpack-dev-server --progress",
"build": "NODE_ENV=production webpack --progress",
"build:dev": "NODE_ENV=development webpack",
"test": "NODE_ENV=test node_modules/.bin/karma start --single-run",
"tdd": "NODE_ENV=test node_modules/.bin/karma start",
"start:integration-server": "http-server .",
"test:integration": "npm run build ; sleep 5 ; npm run start:integration-server & nightwatch ; pkill node",
"test:integration-nobuild": "npm run start:integration-server & nightwatch ; pkill node",
"publish:next": "npm run build && npm publish --tag next"
},
"files": [
"dist/mimic.js",
"dist/mimic.api.js",
"dist/mimic.worker.js",
"dist/mimic.remote.js",
"index.js",
"worker.js",
"api.js",
"remote.js",
"react-native.js",
"nativescript.js",
"isProduction.js",
"polyfills/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/500tech/mimic.git"
},
"author": "500Tech <[email protected]>",
"contributors": [
{
"name": "Alex Ilyaev",
"email": "[email protected]"
},
{
"name": "Maayan Glikser",
"email": "[email protected]"
},
{
"name": "Ilya Gelman",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "",
"devDependencies": {
"autoprefixer-loader": "3.2.0",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-styled-components": "1.1.6",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"clean-webpack-plugin": "0.1.16",
"codemirror": "5.27.4",
"css-loader": "0.28.4",
"eventemitter3": "2.0.3",
"file-loader": "0.11.2",
"http-server": "0.10.0",
"http-status-codes": "1.1.6",
"jasmine-core": "2.6.4",
"js-beautify": "1.6.14",
"karma": "1.7.0",
"karma-chrome-launcher": "2.2.0",
"karma-clear-screen-reporter": "1.0.0",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.3",
"karma-osx-reporter": "0.2.1",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"lodash": "4.17.4",
"lodash-webpack-plugin": "0.11.4",
"nightwatch": "0.9.16",
"prop-types": "15.5.10",
"raw-loader": "0.5.1",
"react": "15.5.4",
"react-click-outside": "2.3.1",
"react-codemirror": "1.0.0",
"react-dnd": "2.4.0",
"react-dnd-html5-backend": "2.4.1",
"react-dom": "15.5.4",
"react-frame-component": "1.1.0",
"recompose": "0.23.5",
"socketcluster-client": "9.0.0",
"standard-headers": "0.1.1",
"style-loader": "0.18.2",
"styled-components": "2.1.0",
"superagent": "3.5.2",
"urijs": "1.18.10",
"url-loader": "0.5.9",
"uuid": "3.1.0",
"webpack": "3.0.0",
"webpack-dev-server": "2.5.0",
"worker-loader": "0.8.0",
"xhook": "1.4.9"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/mimic",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}