-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "@krakenjs/sync-browser-mocks",
"version": "3.0.0",
"description": "Synchronous browser mock shims.",
"main": "index.js",
"scripts": {
"lint": "eslint src/",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/sync-browser-shims.git"
},
"files": [
"dist/",
"src/"
],
"keywords": [
"mock",
"mocks",
"client-side test",
"browser test",
"krakenjs",
"kraken"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"readmeFilename": "README.md",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2",
"gulp": "^3.9.1",
"gulp-webpack": "^1.5.0",
"webpack": "^1.13.0"
},
"dependencies": {
"@krakenjs/zalgo-promise": "^2.0.1"
}
}