-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.04 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
{
"name": "zoyi-simple-fetch",
"version": "0.1.18",
"scripts": {
"test": "mocha --opts tests/mocha.opts tests/**/*-test.ts",
"build:ts": "rm -rf lib-ts && tsc -p . && rm -fr lib-ts/tests && mv lib-ts/src/** lib-ts/ && rm -fr lib-ts/src",
"build:babel": "rm -rf lib && babel lib-ts -d lib --sourceMaps 'both'",
"build": "npm run build:ts && npm run build:babel",
"prepublish": "npm run build"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"files": [
"lib/"
],
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.42",
"@types/qs": "^6.2.30",
"babel-cli": "^6.18.0",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-latest": "^6.16.0",
"chai": "^3.5.0",
"mocha": "^3.1.0",
"mocha-clean": "^1.0.0",
"nock": "^9.0.2",
"ts-node": "^1.3.0",
"typescript": "^2.0.3"
},
"dependencies": {
"qs": "^6.3.0",
"whatwg-fetch": "^2.0.3"
}
}