-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
114 lines (114 loc) · 3.32 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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@pearson-components/elements-sdk",
"version": "3.0.0",
"description": "Styling and basic JavaScript components for UI development.\"",
"main": "build/css/elements.css",
"scripts": {
"start": "npm run serve",
"serve": "NODE_ENV=development webpack-dev-server --hot",
"build": "NODE_ENV=production webpack -p",
"test": "jest --no-cache --coverage",
"postpublish": "npm access public && echo 'Package scope set to public!'"
},
"jest": {
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "<rootDir>/test/__mocks__/styleMock.js",
"^.+\\.(gif|ttf|eot|svg|png)$": "<rootDir>/test/__mocks__/fileMock.js"
},
"collectCoverageFrom": [
"**/src/*.{js,jsx}",
"**/src/**/*.{js,jsx}",
"!**/src/**/components/*.{js,jsx}"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|node_modules|demo|coverage)/",
"<rootDir>/src/styles"
],
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/EnzymeAdapter.js",
"coverageThreshold": {
"global": {
"lines": 80
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pearson-Higher-Ed/elements-sdk.git"
},
"dependencies": {
"babel-plugin-array-includes": "^2.0.3",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.26.0",
"input-format": "^0.1.15",
"libphonenumber-js": "^0.4.42",
"react-responsive-ui": "^0.10.44"
},
"devDependencies": {
"autoprefixer": "^6.1.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.3.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"browser-sync": "^2.26.7",
"colors": "~1.1.2",
"conventional-changelog": "~1.1.0",
"css-loader": "^0.26.1",
"cz-conventional-changelog": "^1.1.4",
"del": "^2.1.0",
"enzyme": "~3.0.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^1.10.3",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "~3.16.1",
"expect": "~1.18.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.10.0",
"fs-extra": "^4.0.1",
"highlight.js": "^8.9.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"ignore-styles": "~5.0.1",
"image-webpack-loader": "^3.2.0",
"intl": "~1.1.0",
"jest": "16.0.2",
"jsdom": "^9.12.0",
"markdown-it": "^5.0.2",
"node-sass": "^9.0.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.0",
"react-intl": "~2.4.0",
"react-router-dom": "^4.0.0-beta.6",
"react-test-renderer": "~16.4.0",
"react-transition-group": "^1.1.3",
"sass-loader": "^6.0.0",
"semver": "~5.1.0",
"sinon": "^2.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"uuid": "2.0.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.11.5"
},
"keywords": [
"pearson-components"
],
"author": "Pearson Design Accelerator",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pearson-Higher-Ed/elements-sdk/issues"
},
"homepage": "https://github.com/Pearson-Higher-Ed/elements-sdk/"
}