-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "voicecommerce",
"version": "0.1.1",
"description": "JavaScript library for integrating ecommerce with Amazon Alexa and Google Assistant",
"main": "dist",
"scripts": {
"build": "babel lib -d dist --presets es2015,es2017 --plugins transform-runtime,transform-async-to-generator --copy-files",
"test": "mocha --compilers js:babel-core/register ./test/**/*_test.js",
"lint": "eslint .",
"fixlint": "eslint . --fix"
},
"keywords": [
"ecommerce",
"amazon",
"alexa",
"google",
"assistant"
],
"author": "Upside <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.2.0",
"mocha": "^5.2.0",
"sinon": "^6.1.4"
},
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.4",
"express-oauth-server": "^2.0.0",
"pug": "^2.0.3"
}
}