forked from morsdyce/mimic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.25 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
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
{
"name": "mimic",
"version": "2.0.2",
"description": "Bad ass client side mocking solution",
"main": "dist/mimic.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",
"worker.js",
"api.js",
"remote.js",
"react-native.js",
"nativescript.js",
"polyfills/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/500tech/mimic.git"
},
"author": "500Tech <info@500tech.com>",
"contributors": [
{
"name": "Alex Ilyaev",
"email": "alexilyaev@gmail.com"
},
{
"name": "Maayan Glikser",
"email": "maayan@500tech.com"
},
{
"name": "Ilya Gelman",
"email": "ilyagelman@ilyagelman.com"
}
],
"license": "MIT",
"homepage": "",
"devDependencies": {
"autoprefixer-loader": "3.2.0",
"babel-core": "6.23.1",
"babel-loader": "6.3.2",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-styled-components": "1.0.0",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"clean-webpack-plugin": "0.1.15",
"codemirror": "5.23.0",
"css-loader": "0.26.1",
"eventemitter3": "1.1.1",
"file-loader": "0.10.0",
"http-server": "0.9.0",
"http-status-codes": "1.1.6",
"jasmine-core": "2.5.2",
"js-beautify": "1.6.9",
"karma": "1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-clear-screen-reporter": "1.0.0",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.2",
"karma-osx-reporter": "0.2.1",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.2",
"lodash": "4.17.4",
"lodash-webpack-plugin": "0.11.0",
"nightwatch": "0.9.12",
"node-sass": "4.5.0",
"raw-loader": "0.5.1",
"react": "15.4.2",
"react-click-outside": "2.2.0",
"react-codemirror": "0.3.0",
"react-dnd": "2.2.3",
"react-dnd-html5-backend": "2.2.3",
"react-dom": "15.4.2",
"react-frame-component": "1.0.1",
"recompose": "0.22.0",
"sass-loader": "6.0.1",
"socketcluster-client": "5.2.5",
"standard-headers": "0.1.1",
"style-loader": "0.13.1",
"styled-components": "2.0.0-3",
"superagent": "1.6.0",
"urijs": "1.18.7",
"url-loader": "0.5.7",
"uuid": "2.0.1",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1",
"worker-loader": "0.7.1",
"xhook": "1.4.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/mimic",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}