-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "tyche",
"version": "0.2.0",
"description": "omni-builder",
"bugs": {
"url": "https://github.com/withinboredom/tyche/issues",
"email": "landers.robert@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/withinboredom/tyche"
},
"license": "MIT",
"dependencies": {
"babel-plugin-transform-runtime": "^6.15.0",
"babel-runtime": "^6.11.6",
"cli-logger": "^0.5.40",
"cli-spinner": "0.2.5",
"commander": "2.9.0",
"glob": "^7.0.6",
"lokijs": "1.4.1",
"promisify-node": "^0.4.0",
"semver": "^5.3.0"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-jest": "^15.0.0",
"babel-plugin-module-resolver": "^2.2.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-es2016": "6.11.3",
"babel-preset-es2017": "6.14.0",
"babel-preset-stage-3": "6.11.0",
"eslint": "^3.5.0",
"eslint-import-resolver-babel-module": "2.0.1",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jasmine": "1.8.1",
"jest-cli": "15.1.1"
},
"bin": {
"tyche": "./bin/index.js"
},
"scripts": {
"build-cli": "babel --out-dir bin ./src --ignore __tests__,__mocks__",
"watch": "babel --watch --out-dir bin ./src --ignore __tests__,__mocks__",
"test": "jest"
},
"jest": {
"testEnvironment": "node",
"preprocessorIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/bin/.*js"
],
"collectCoverage": false,
"coverageReporters": [
"text",
"json",
"html"
]
}
}