-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 2.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
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
{
"name": "quanto-commons",
"version": "1.0.50",
"description": "Quanto Common Tools",
"main": "dist/index.js",
"scripts": {
"build": "npm run clear && tsc",
"clear": "rimraf ./dist/*",
"lint": "eslint src/**",
"repl": "nodemon --config ./repl/nodemon.json ./repl.js --exec babel-node",
"test": "jest --coverage --forceExit --runInBand",
"test:watch": "jest --watch --coverage"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/quan-to/quanto-commons.git"
},
"author": "Quanto",
"license": "MIT",
"bugs": {
"url": "https://github.com/quan-to/quanto-commons/issues"
},
"homepage": "https://github.com/quan-to/quanto-commons#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.2",
"babel-plugin-flow-runtime": "^0.15.0",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.24.0",
"debug": "*",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.2.0",
"express": "^4.15.2",
"flow-bin": "^0.59.0",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"nodemon": "^1.10.2",
"reify": "^0.12.3",
"repl": "^0.1.3",
"repl-promised": "^0.1.0",
"repl.history": "^0.1.3",
"rimraf": "^2.5.4"
},
"dependencies": {
"@types/figures": "^2.0.0",
"@types/graphql": "^14.2.0",
"@types/moment": "^2.13.0",
"figures": "^2.0.0",
"graphql": "^0.11.7",
"moment": "^2.18.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}