-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.79 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
{
"name": "terra-module",
"version": "0.1.0",
"description": "terra-module",
"main": "lib/TerraModule.js",
"repository": {
"type": "git",
"url": "git+/~https://github.com/cerner/terra-module.git"
},
"keywords": [
"Cerner",
"Terra",
"terra-module",
"TerraModule",
"UI"
],
"author": "Cerner Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "/~https://github.com/cerner/terra-module/issues"
},
"homepage": "/~https://github.com/cerner/terra-module#readme",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "npm run lint-js && npm run lint-scss",
"lint-js": "eslint --ext .jsx --ext .js .",
"lint-scss": "stylelint src/**/*.scss",
"posttest": "npm run lint",
"pretest": "npm run build",
"prepublish": "npm run test",
"release:major": "npm version major -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:minor": "npm version minor -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:patch": "npm version patch -m \"Released version %s\" && npm publish && git push --follow-tags",
"start": "npm run lint && webpack-dev-server --hot --inline --display-error-details --progress --colors --host 0.0.0.0",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"coveragePathIgnorePatterns": ["/node_modules/", "/tests"],
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy"
},
"setupFiles": ["./tests/jestsetup.js"],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.23.1",
"enzyme": "^2.6.0",
"enzyme-to-json": "^1.4.4",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.22.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^17.0.3",
"node-sass": "^3.13.0",
"postcss-loader": "^0.10.1",
"react-addons-test-utils": "^15.4.1",
"sass-loader": "^3.2.3",
"style-loader": "^0.13.1",
"stylelint": "^7.6.0",
"stylelint-config-sass-guidelines": "^1.1.0",
"terra-application": "^0.2.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"classnames": "^2.2.5",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"terra-legacy-theme": "^0.1.0",
"terra-mixins": "^1.0.0"
}
}