forked from ktonon/elm-serverless
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.06 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": "elm-serverless",
"version": "4.0.0",
"engines": {
"node": ">=6.10.0"
},
"description": "Deploy an Elm worker to AWS Lambda using serverless",
"author": "Kevin Tonon <[email protected]>",
"license": "MIT",
"repository": "[email protected]:ktonon/elm-serverless.git",
"main": "src-bridge/index.js",
"scripts": {
"clobber": "rm -rf elm-stuff demo/elm-stuff demo/.webpack tests/elm-stuff tests/Doc",
"rebuild": "npm run clobber && npm install && npm test",
"deploy:demo": "cd demo && cross-env NODE_ENV=production serverless deploy",
"posttest": "eslint .",
"pretest": "node scripts/test-server",
"start": "cd demo && serverless offline",
"test": "npm run test:js && npm run test:elm",
"test:js": "istanbul cover --root src-bridge --include-all-sources --dir ./.coverage node_modules/mocha/bin/_mocha -- test/demo test/bridge",
"test:elm": "elm-doc-test && elm test",
"test:watch": "elm test --watch & node scripts/test-server && mocha --reporter=dot --watch test/bridge test/demo"
},
"dependencies": {
"urlencode": "^1.1.0",
"uuid": "^3.1.0",
"xmlhttprequest": "git://github.com/ktonon/node-XMLHttpRequest.git#bdd9e5c75a3c0f8f4038697234e8612270cec799"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"co": "^4.6.0",
"cross-env": "^3.1.4",
"elm": "^0.18.0",
"elm-doc-test": "^4.0.0",
"elm-test": "^0.18.7",
"elm-webpack-loader": "^4.3.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"ps-list": "^4.0.0",
"rc": "^1.1.6",
"serverless": "^1.17.0",
"serverless-offline": "^3.15.1",
"serverless-webpack": "2.0.0",
"shebang-loader": "0.0.1",
"should": "^11.2.1",
"sinon": "^2.3.8",
"strip-debug-loader": "^1.0.0",
"superagent-defaults": "^0.1.14",
"supertest": "^3.0.0",
"webpack": "^3.3.0"
}
}