-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "@switch-company/fetcher",
"version": "2.0.2",
"description": "Wrap the Fetch API with convenience methods.",
"main": "dist/fetcher.js",
"module": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "rollup -c && cross-env NODE_ENV=production rollup -c",
"test": "tape test/*.js | tap-diff",
"version": "npm run build && npm run test && git add -A dist",
"postversion": "git push && git push --tags",
"watch:build": "watch 'npm run build' lib --interval=1",
"watch:test": "watch 'npm test' {dist,test} --interval=1"
},
"repository": {
"type": "git",
"url": "[email protected]:Switch-Company/fetcher.git"
},
"author": {
"name": "Switch",
"email": "[email protected]",
"url": "http://switch.paris"
},
"homepage": "https://www.npmjs.com/package/@switch-company/fetcher",
"license": "ISC",
"browserslist": [
"> 1%",
"last 2 versions",
"IE 10"
],
"devDependencies": {
"@detools/tap-diff": "^0.2.2",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"busboy": "^0.2.14",
"cross-env": "^5.2.1",
"eslint": "^4.19.1",
"eslint-config-idiomatic": "^4.0.0",
"puppeteer": "^1.20.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^3.0.0",
"tape": "^4.13.2",
"watch": "^1.0.2"
},
"dependencies": {
"@switch-company/form-utils": "^1.0.0"
}
}