-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage.json
88 lines (88 loc) · 2.13 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": "pcln-design-system",
"version": "1.0.0-6",
"description": "Priceline Design System",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run icons && babel src -d dist --ignore __tests__",
"start": "start-storybook -p 8000 -c .storybook",
"icons": "node scripts/parse-icons",
"deploy": "storybook-to-ghpages",
"storybook": "build-storybook -c .storybook -o .site",
"coverage": "jest --coverage",
"codecov": "jest && codecov",
"standard": "standard",
"test": "jest"
},
"author": "Brent Jackson",
"contributors": [
{
"name": "Brent Jackson",
"email": "jxnblk@gmail.com"
},
{
"name": "Malek Hakim",
"email": "hakimelek@gmail.com"
},
{
"name": "Ben Chen",
"email": "benjaminlchen@gmail.com"
},
{
"name": "Evan Pipta",
"email": "3pipta@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"@storybook/addon-info": "^3.2.0",
"@storybook/react": "^3.2.3",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"camelcase": "^4.1.0",
"codecov": "^2.3.0",
"jest": "^20.0.4",
"jest-styled-components": "^4.0.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"standard": "^10.0.2",
"styled-components": "^2.1.1",
"svgi": "^1.1.0"
},
"jest": {
"coverageReporters": [
"lcov",
"html"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"dist/"
]
},
"dependencies": {
"chroma-js": "^1.3.4",
"prop-types": "^15.5.10",
"styled-system": "^1.0.0-11"
},
"standard": {
"globals": [
"describe",
"test",
"expect"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pricelinelabs/design-system.git"
},
"bugs": {
"url": "https://github.com/pricelinelabs/design-system/issues"
},
"homepage": "https://github.com/pricelinelabs/design-system#readme"
}