forked from cerner/terra-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.3 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
115
116
{
"name": "terra-core",
"private": true,
"version": "0.1.0",
"description": "terra-core",
"engines": {
"node": "^8.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerner/terra-core.git"
},
"keywords": [
"Cerner",
"Terra",
"Terra Core",
"terra-core"
],
"author": "Cerner Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cerner/terra-core/issues"
},
"jest": {
"collectCoverageFrom": [
"packages/**/src/*.js",
"packages/**/src/*.jsx"
],
"setupFiles": [
"raf/polyfill",
"./jestsetup.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(svg|jpg|png|md)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"scripts": {
"bootstrap": "lerna bootstrap",
"bootstrap:hoist": "lerna bootstrap --hoist --nohoist=moment",
"clean:all": "lerna clean --yes && node scripts/clean-modules/index.js",
"clean:install": "npm run clean:all && npm install",
"clean:obsolete-snapshots": "npm test -- -u",
"compile": "lerna run compile",
"compile:prod": "webpack --config webpack.config.js -p",
"danger": "danger",
"deploy": "webpack --config webpack.config -p && gh-pages -d build",
"dependency-markdown": "node scripts/dependency-markdown-generator/DependencyMarkdownGenerator.js",
"generate-config": "generate-config -o 'dev-site-config' -s 'packages/terra-site/src/examples/**/+(Icon!(*Navigation|*Routes|*Tabs)|*Index).jsx' -s 'packages/terra-*/tests/{nightwatch,nightwatch/*}/!(*-spec|*Template|common|MockComponent|SignatureConstants)+(.jsx|.js)' -s 'packages/terra-table/tests/nightwatch/*/components/!(*-spec|*Template|common|MockComponent|SignatureConstants)+(.jsx|.js)'",
"heroku-prebuild": "npm install rimraf && npm install -g lerna@2.1.2 && lerna init",
"heroku-postbuild": "npm install --only=dev && npm run compile:prod",
"jest": "jest",
"jest:coverage": "jest --coverage",
"link-parent-bin": "link-parent-bin",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint --ext .js,.jsx .",
"lint:scss": "stylelint 'packages/**/src/**/*.scss' --syntax scss",
"nightwatch": "nightwatch",
"pretest": "npm run lint",
"postinstall": "node scripts/post-install/index.js",
"postinstall:package": "npm run compile && npm run bootstrap",
"postinstall:project": "link-parent-bin && npm run compile && npm run bootstrap:hoist",
"publish": "npm whoami && check-installed-dependencies && npm run compile && npm test && lerna publish",
"postpublish": "npm run dependency-markdown && git add --all && git commit -m 'Updated DEPENDENCIES.md files'",
"start": "tt:serve --config webpack.config",
"start:build": "npm run generate-config && npm run start",
"start-heroku": "tt:serve-static --site build",
"test": "jest && npm run wdio && nightwatch",
"wdio": "wdio"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^21.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"check-installed-dependencies": "^1.0.0",
"danger": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.2.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"gh-pages": "^0.12.0",
"glob": "^7.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.0.2",
"lerna": "^2.1.2",
"link-parent-bin": "^0.1.3",
"load-json-file": "^2.0.0",
"nightwatch": "^0.9.19",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^3.2.0",
"react-router-dom": "^4.0.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.1",
"shelljs": "^0.7.7",
"stylelint": "^9.0.0",
"stylelint-config-sass-guidelines": "^5.0.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.0.0",
"stylelint-suitcss": "^3.0.0",
"terra-dev-site": "0.6.0",
"terra-toolkit": "^3.0.0",
"webpack-merge": "^4.1.2"
}
}