-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·102 lines (102 loc) · 2.49 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "stateslang",
"version": "0.0.2",
"description": "An implementation and execution engine for the Amazon States Language written in Typescript.",
"author": "Michael Paris <[email protected]>",
"license": "MIT",
"homepage": "https://scaphold.io",
"repository": {
"type": "git",
"url": "git+https://github.com/mlp5ab/stateslang-js"
},
"bugs": {
"url": "https://github.com/mlp5ab/stateslang-js/issues"
},
"keywords": [
"stateslang",
"javascript",
"typescript",
"graphql",
"static",
"amazon",
"npm",
"microservices"
],
"main": "build/index.js",
"bin": {},
"scripts": {
"buildw": "./scripts/buildw",
"build": "./scripts/build",
"dev": "./scripts/dev",
"lint": "./scripts/lint",
"ci": "./scripts/ci",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"@types/ramda": "0.0.5",
"chalk": "1.1.3",
"debug": "^2.6.3",
"finalhandler": "^0.5.1",
"graphql": ">=0.6.0 <1.0.0",
"http-errors": "^1.5.1",
"immutable": "^3.8.1",
"jsonwebtoken": "^7.1.9",
"parseurl": "^1.3.1",
"pg": "^6.1.0",
"pg-connection-string": "^0.1.3",
"pg-minify": "^0.4.1",
"pluralize": "^3.0.0",
"postgres-interval": "^1.0.2",
"ramda": "^0.23.0",
"rxjs": "^5.2.0",
"send": "^0.14.1",
"tslib": "^1.5.0"
},
"devDependencies": {
"@reactivex/rxjs": "^5.2.0",
"@types/chalk": "^0.4.30",
"@types/change-case": "0.0.29",
"@types/commander": "^2.3.30",
"@types/debug": "0.0.29",
"@types/graphql": "^0.8.2",
"@types/immutable": "^3.8.7",
"@types/jest": "^19.2.2",
"@types/jsonwebtoken": "^7.1.33",
"@types/node": "^6.0.38",
"@types/pluralize": "0.0.26",
"connect": "^3.5.0",
"express": "^4.14.0",
"graphiql": "^0.9.1",
"graphql": "^0.9.3",
"install": "^0.8.7",
"jest": "^19.0.2",
"koa": "^2.0.0",
"nodemon": "^1.11.0",
"npm": "^4.4.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-scripts": "0.7.0",
"source-map-support": "^0.4.6",
"supertest": "^2.0.1",
"ts-jest": "^19.0.2",
"ts-node": "^2.0.0",
"tslint": "^4.2.0",
"typescript": "^2.2.1"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"js"
],
"browser": false,
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}