-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "pseudo-fetch",
"version": "0.3.1",
"description": "Simple mock of global/window.fetch with a user-friendly api",
"repository": {
"type": "git",
"url": "https://github.com/tOgg1/pseudo-fetch"
},
"main": "dist/index.js",
"scripts": {
"build": "npm run build:all",
"build:browser": "webpack",
"build:browser:prod": "PROD=1 webpack",
"build:transpile": "babel src --out-dir dist",
"build:all": "npm run build:transpile && npm run build:browser && npm run build:browser:prod",
"docs": "jsdoc2md src/**/*.js > docs/api.md",
"test": "mocha tests --require tests/test_helper.js --compilers js:babel-core/register --recursive"
},
"author": "Tormod Haugland",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.15.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-babel": "^4.0.1",
"mocha": "^3.2.0",
"webpack": "^2.2.1",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"url-parse": "^1.1.7"
}
}