forked from nuysoft/Mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.01 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
{
"name": "mockjs",
"title": "Mock.js",
"description": "生成随机数据 & 拦截 Ajax 请求",
"version": "1.0.1-beta3",
"homepage": "http://mockjs.com/",
"keywords": [
"mock",
"mockJSON",
"mockAjax"
],
"author": "[email protected]",
"dependencies": {
"commander": "*"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-connect": "*",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^0.10.3",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"gulp-mocha-phantomjs": "^0.10.1",
"jshint": "^2.8.0",
"jshint-stylish": "^2.1.0",
"webpack": "^1.12.9"
},
"repository": {
"type": "git",
"url": "git://github.com/nuysoft/Mock.git"
},
"main": "./dist/mock.js",
"scripts": {
"test": "gulp mocha",
"coveralls": "gulp coveralls"
},
"bin": {
"random": "bin/random"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nuysoft/Mock/blob/master/LICENSE"
}
],
"spm": {
"main": "dist/mock.js"
}
}