-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.64 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
{
"name": "@pearson-components/modal",
"version": "1.7.0",
"description": "Modal",
"author": "pearson design accelerator [email protected]",
"license": "PEARSON PROPRIETARY AND CONFIDENTIAL INFORMATION SUBJECT TO NDA",
"homepage": "https://pearson-higher-ed.github.io/modal/",
"main": "./build/dist.modal.js",
"scripts": {
"start": "npm run serve",
"serve": "NODE_ENV=development webpack-dev-server --hot",
"test": "jest --no-cache --coverage",
"build": "NODE_ENV=production webpack -p",
"postpublish": "npm access public && echo 'Package scope set to public!'"
},
"repository": {
"type": "git",
"url": "https://github.com/Pearson-Higher-Ed/modal/"
},
"jest": {
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"collectCoverageFrom": [
"**/src/js/*.{js,jsx}"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "<rootDir>/test/__mocks__/styleMock.js",
"^.+\\.(gif|ttf|eot|svg|png)$": "<rootDir>/test/__mocks__/fileMock.js"
},
"coverageThreshold": {
"global": {
"lines": 0
}
},
"testPathIgnorePatterns": [
"<rootDir>/(build|node_modules|demo|coverage)/"
],
"testEnvironment": "node",
"verbose": true
},
"devDependencies": {
"@pearson-components/elements-sdk": "2.2.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.3.2",
"babel-plugin-react-intl": "^2.3.1",
"babel-polyfill": "^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",
"colors": "~1.1.2",
"conventional-changelog": "~1.1.0",
"css-loader": "^0.26.1",
"enzyme": "^2.5.1",
"eslint": "^4.18.2",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "~3.16.1",
"expect": "~1.18.0",
"expect-jsx": "^5.0.0",
"file-loader": "^0.10.0",
"fs-extra": "^1.0.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"ignore-styles": "~5.0.1",
"intl": "~1.1.0",
"jest": "16.0.2",
"node-sass": "^4.5.0",
"prop-types": "^15.5.6",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-intl": "~2.3.0",
"react-test-renderer": "15.6.1",
"sass-loader": "^6.0.0",
"semver": "~5.1.0",
"sinon": "^2.3.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"uuid": "2.0.2",
"webpack": "^2.2.1",
"webpack-dev-server": "~2.9.0"
},
"keywords": [
"pearson-components"
],
"dependencies": {
"ally.js": "^1.4.1",
"react-modal": "3.1.7"
}
}