This repository has been archived by the owner on Jan 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.16 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
{
"name": "gobbldygook",
"version": "3.0.0-rc.2",
"private": true,
"workspaces": [
"modules/*"
],
"scripts": {
"build": "cd modules/gob-web && npm run build",
"build-peg": "cd modules/gob-hanson-format && npm run build",
"bugsnag": "curl -d 'apiKey=7e393deddaeb885f5b140b4320ecef6b' -d 'repository=https://github.com/hawkrives/gobbldygook' -d 'revision=$(git rev-parse --verify HEAD)' 'https://notify.bugsnag.com/deploy'",
"count": "echo $(fd -e scss | wc -l) files && echo $(fd -e scss | xargs wc -l | gsort | tail -n1) lines",
"cover": "jest --coverage && open coverage/index.html",
"flow": "flow",
"lint": "eslint --cache modules/",
"netlify": "npm run build -- --no-progress && npm run bugsnag",
"pretty": "prettier --write 'config/**/*.js' 'modules/**/*.{js,scss}'",
"p": "pretty-quick",
"start": "cd modules/gob-web && npm start",
"test": "jest",
"test-students": "./modules/gob-cli/test-student test/example-students"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"semi": false,
"bracketSpacing": false
},
"jest": {
"collectCoverageFrom": [
"modules/**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/modules/gob-hanson-format/parse-hanson-string.js"
],
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"globals": {
"TESTING": true,
"VERSION": "3.0.0-test"
},
"resetModules": true,
"moduleNameMapper": {
"^.+\\.s?css$": "<rootDir>/config/flow/css.js.flow"
},
"setupFiles": [
"./config/test-harness.js"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"testPathIgnorePatterns": [
"\\.support.js$",
"__support__"
]
},
"greenkeeper": {
"ignore": [
"history"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-display-name": "^6.25.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-stdin": "^1.1.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"debug": "^3.1.0",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "^0.77.0",
"flow-remove-types": "^1.2.3",
"jest": "^23.4.1",
"jest-matcher-utils": "^23.2.0",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0"
}
}