This repository has been archived by the owner on Aug 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
111 lines (111 loc) · 3.8 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
{
"name": "travix-ui-kit",
"version": "0.9.4",
"description": "Travix UI kit",
"main": "lib/index.js",
"scripts": {
"build:watch": "node ./builder/program -w",
"build": "node ./builder/program",
"ci:comment-url": "curl https://api.github.com/repos/$TRAVIS_REPO_SLUG/issues/$TRAVIS_PULL_REQUEST/comments -u \"$TRAVIX_SERVICE_ACCOUNT:$TRAVIX_SERVICE_ACCOUNT_TOKEN\" --data \"{ \\\"body\\\": \\\"A new acceptance URL has been deployed: [$ACCP_URL]($ACCP_URL)\\\" }\"",
"ci:lint": "eslint --color --max-warnings 0 --quiet '{components,tests,utils,scripts}/**/*.js'",
"ci:send-coverage": "codecov",
"ci:test": "TZ=utc jest -c ./tests/jest.config.json --bail --ci --coverage --maxWorkers=2 --no-cache --silent",
"deploy:accp": "BRANCH=$(git rev-parse --abbrev-ref HEAD); make prepare-site && now rm -y $BRANCH 2>/dev/null; now _site --public -n $BRANCH",
"deploy:accp:ci": "now -t \"${NOW_SH_AUTH_TOKEN}\" rm -y \"${TRAVIS_PULL_REQUEST_BRANCH}\" 2>/dev/null; now -t \"${NOW_SH_AUTH_TOKEN}\" _site --public -n \"${TRAVIS_PULL_REQUEST_BRANCH}\"",
"lint": "eslint --color '{components,tests,utils,scripts}/**/*.js'",
"prebuild:watch": "babel --copy-files ./components --out-dir lib --ignore *.scss,*.md -w &",
"prebuild": "babel --copy-files ./components --out-dir lib --ignore *.scss,*.md &",
"styleguide:build": "styleguidist build",
"styleguide:server": "styleguidist server",
"styleguide:dev": "npm run styleguide:build && npm run styleguide:server",
"test": "TZ=utc jest -c ./tests/jest.config.json",
"transpile": "npm run build",
"update-snapshots": "TZ=utc jest -c ./tests/jest.config.json -u"
},
"repository": {
"type": "git",
"url": "[email protected]:Travix-International/travix-ui-kit.git"
},
"keywords": [
"travix-ui-kit"
],
"author": {
"name": "Travix International",
"url": "http://travix.com"
},
"license": "MIT",
"homepage": "https://github.com/Travix-International/travix-ui-kit",
"contributors": [
{
"name": "Artem Riasnianskyi",
"url": "https://github.com/asci"
},
{
"name": "Ivana Viranovska",
"url": "https://github.com/iwwwi"
},
{
"name": "Ricardo Machado",
"url": "https://github.com/mAiNiNfEcTiOn"
}
],
"dependencies": {
"classnames": "^2.2.5",
"react-select": "1.2.1"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^8.0.0",
"babel-jest": "^22.0.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-travix": "^1.1.0",
"babel-register": "^6.16.3",
"cheerio": "^0.22.0",
"codecov": "^3.0.0",
"commander": "^2.9.0",
"create-react-class": "^15.5.2",
"css-loader": "~0.28.1",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-to-json": "^3.3.1",
"eslint": "^4.11.0",
"eslint-config-travix": "^3.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "~2.1.0",
"fs-extra": "^5.0.0",
"jest": "^22.0.0",
"jest-cli": "^22.2.0",
"node-sass": "^4.3.0",
"now": "9.2.8",
"postcss-loader": "~2.1.0",
"prop-types": "^15.5.8",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-styleguidist": "^6.4.0",
"react-test-renderer": "^16.1.0",
"sass-loader": "~6.0.4",
"style-loader": "~0.20.1",
"theme-builder": "~0.5.0",
"webpack": "^3.11.0",
"webpack-hot-middleware": "^2.15.0"
},
"greenkeeper": {
"ignore": [
"eslint",
"eslint-plugin-react",
"extract-text-webpack-plugin",
"react",
"react-addons-test-utils",
"react-dom",
"react-styleguidist",
"sass-loader",
"webpack"
]
}
}