-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.38 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
55
56
57
58
59
{
"name": "rakuten-linkshare",
"version": "0.0.8",
"description": "Rakuten LinkShare API Helper Methods For Node / JavaScript",
"author": {
"name": "Den Odell",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:denodell/rakuten-linkshare.git"
},
"bugs": {
"url": "https://github.com/denodell/rakuten-linkshare/issues"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"compile": "babel -d dist/ src/",
"prepublish": "npm run compile",
"start": "node dist/index.js",
"test": "npm run compile && ava --serial"
},
"ava": {
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"failFast": true,
"verbose": true,
"require": [
"babel-core/register"
]
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.5",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-plugin-transform-runtime": "*",
"babel-runtime": "^6.9.2",
"dateformat": "^1.0.12",
"es6-promise": "^3.2.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.13.1",
"xml2js": "^0.4.16"
},
"devDependencies": {
"ava": "^0.15.2",
"ava-spec": "^1.0.1",
"sinon": "^1.17.4",
"babel-eslint": "^6.1.2",
"eslint": "^3.1.1"
}
}