-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.97 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.97 KB
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
{
"name": "nebula",
"version": "0.1.0",
"description": "Documentation for the Nebula Framework",
"main": "index.js",
"repository": "git@github.com:rbrtsmith/nebula.git",
"author": "rbrtsmith <rbrtsmith84@googlemail.com>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib coverage",
"build": "npm run clean && webpack",
"start": "webpack-dev-server --open-page \"nebula\"",
"lint": "eslint . --ext .js,.jsx",
"unit": "jest",
"unit:watch": "jest --watch",
"unit:coverage": "jest --coverage",
"unit:ci": "jest --maxWorkers=4",
"test": "yarn lint && yarn unit",
"test:ci": "yarn lint && yarn unit:ci",
"deploy": "yarn test && yarn build && gh-pages -d dist"
},
"dependencies": {
"classnames": "^2.2.5",
"file-loader": "^1.1.0",
"nebula-react": "^0.8.0",
"pretty": "^2.0.0",
"prismjs": "^1.6.0",
"prop-types": "^15.5.10",
"qs": "^6.5.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-markdown": "^2.5.0",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"recompose": "^0.24.0",
"shortid": "^2.2.8"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"deepfreeze": "^2.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"gh-pages": "^1.0.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"markdown-loader": "^2.0.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"react-addons-test-utils": "^15.6.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"svg-sprite-loader": "^3.2.1",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1",
"webpack-merge": "^4.1.0"
},
"jest": {
"rootDir": "./src",
"resetMocks": true,
"resetModules": true,
"moduleDirectories": [
"node_modules",
"src"
],
"collectCoverageFrom": [
"**/*.{js,jsx}"
],
"coveragePathIgnorePatterns": [
"/node_modules",
"<rootDir>/components/Source/utils/highlight.js",
"<rootDir>/modules/App/Navigation/model.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/__testSetup__/enzyme.js",
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|bmp|eot|otf|webp|ttf|woff|woff2|css|scss|ico)$": "<rootDir>/__mocks__/fileMock.js",
"^.+\\.(svg)$": "<rootDir>/__mocks__/svgMock.js"
}
}
}