-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 1.01 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
{
"name": "aws-appsync-js",
"version": "0.0.1",
"description": "Simple pure js client for AWS AppSync",
"main": "./dist/appsync.js",
"scripts": {
"build": "rm -rf dist && NODE_ENV=production webpack -p --config webpack.config.js --progress",
"build:dev": "rm -rf dist && NODE_ENV=development webpack --config webpack.config.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yankouskia/aws-appsync-js.git"
},
"author": "Aliaksandr Yankouski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yankouskia/aws-appsync-js/issues"
},
"homepage": "https://github.com/yankouskia/aws-appsync-js#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"exports-loader": "^0.6.4",
"webpack": "^3.10.0",
"whatwg-fetch": "^2.0.3"
}
}