This repository has been archived by the owner on Apr 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 2.87 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
103
{
"name": "core-coderoad",
"description": "Interactive tutorial platform",
"keywords": [
"coderoad",
"education",
"learn",
"tutorial"
],
"bugs": {
"url": "https://github.com/coderoad/core-coderoad"
},
"license": "Apache",
"author": "Shawn McKay <shawn.j.mckay@gmail.com>",
"files": [
"package.json",
"keymaps",
"lib",
"menus",
"styles",
"*.md"
],
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/coderoad/core-coderoad.git"
},
"scripts": {
"compile": "tsc",
"commit": "git-cz",
"test": "jest",
"mocks": "tsc -p ./src/__mocks__",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"atom-plugin-command-line": "1.0.2",
"coderoad-cli": "0.10.0",
"marked": "0.3.6",
"material-ui": "0.16.0",
"node-file-exists": "1.1.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"react-router-sans-urls": "0.1.2",
"react-tap-event-plugin": "1.0.0",
"redux": "3.6.0",
"redux-logger": "2.7.0",
"redux-thunk": "2.1.0",
"reselect": "2.5.4"
},
"devDependencies": {
"coderoad-cli": "^0.10.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"electron-chromedriver": "^1.4.0",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"jest": "^16.0.1",
"jest-cli": "^16.0.1",
"react-addons-test-utils": "15.3.2",
"react-test-renderer": "15.3.2",
"redux-mock-store": "^1.2.1",
"selenium-webdriver": "^3.0.0-beta-3",
"semantic-release": "^4.3.5",
"spectron": "^3.4.0",
"tslint": "^3.15.1",
"tslint-react": "^1.1.0",
"typescript": "^2.0.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"verbose": true,
"scriptPreprocessor": "<rootDir>/src/__tests__/preprocessor.js",
"mocksPattern": "src/__tests__/mocks",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "src/*/.*\\.test\\.(ts|tsx|js)$",
"coverageDirectory": "src/__coverage__",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"src/typings/",
"src/__tests__",
"src/__coverage__"
],
"coverageThreshold": {
"global": {
"branches": 30,
"functions": 30,
"lines": 30,
"statements": 30
}
},
"cacheDirectory": "src/__tests__/__cache__"
}
}