forked from Tradeshift/tradeshift-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 4.03 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@tradeshift/tradeshift-ui",
"version": "12.2.0",
"description": "The Tradeshift UI Library & Framework",
"homepage": "https://ui.tradeshift.com/",
"bugs": {
"url": "https://github.com/Tradeshift/tradeshift-ui/issues"
},
"author": "Tradeshift UI Team",
"contributors": [
"Daniel Spitzer <dsp@tradeshift.com> (https://github.com/sampi)",
"Leo Zhang <lza@tradeshift.com> (https://github.com/zdlm)",
"Tynan DeBold <tynan.debold@tradeshift.com> (https://github.com/tynandebold)",
"Wired Earp (https://github.com/wiredearp)"
],
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"****** LINT *****": "",
"prelint": "run-p -n prettier prettier-less prettier-json prettier-xhtml",
"lint": "npm run eslint",
"eslint": "eslint --cache --config ./.eslintrc.json .",
"prettier": "prettier --write \"**/*.js\"",
"prettier-less": "prettier --write \"**/*.less\"",
"prettier-json": "prettier --write \"**/*.json\"",
"prettier-xhtml": "prettier --write \"**/*.{xhtml,html}\"",
"****** DIST *****": "",
"build": "grunt dist",
"deploy-s3": "node tasks/deploy.js",
"deploy-ali-oss": "node tasks/deploy_ali_oss.js",
"release": "release-it --config=.release-it.json",
"prelease": "release-it --config=.release-it.beta.json --npm.tag=next",
"****** TEST *****": "",
"prebrowserstack": "node tasks/browserstack.browsers.js > browserstack.browsers.json",
"browserstack": "node tasks/browserstack.js",
"test": "npm run eslint & grunt jasmine & wait && npm run browserstack",
"http": "static spec/jasmine -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}' -a 0.0.0.0",
"****** NODE *****": "",
"postinstall": "cd docs && npm ci",
"gh-pages": "grunt dist && node tasks/gh-pages.js",
"package-dist": "node tasks/package-dist.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --config ./.eslintrc.json",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"*.less": [
"prettier --write",
"git add"
]
},
"browserslist": [
"Last 2 versions",
"ie 11"
],
"devDependencies": {
"alce": "^1.2.0",
"ali-oss": "^4.10.1",
"autoprefixer": "^7.1.4",
"babel-eslint": "^7.2.3",
"browserstack-runner": "^0.9.0",
"chalk": "^1.1.3",
"eslint": "3.19.0",
"eslint-config-prettier": "2.0.0",
"eslint-config-standard": "10.2.1",
"eslint-config-tradeshift": "4.2.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jasmine": "2.6.0",
"eslint-plugin-node": "5.0.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"glob": "^7.1.2",
"grunt": "^1.0.2",
"grunt-asciify": "^0.2.2",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^3.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-postcss": "^0.8.0",
"grunt-size-report": "^0.1.4",
"grunt-spiritual-build-tmpfix": "0.1.19",
"grunt-spiritual-dox": "^0.1.2",
"grunt-spiritual-edbml-tmpfix": "^0.3.1",
"grunt-sri": "^0.2.0",
"husky": "^1.3.1",
"less": "^3.9.0",
"lint-staged": "^8.1.3",
"load-grunt-tasks": "^3.5.2",
"node-static": "^0.7.10",
"npm-run-all": "^4.1.1",
"octonode": "^0.9.4",
"postcss-clean": "^1.0.2",
"prettier": "1.16.4",
"release-it": "7.6.1",
"s3": "^4.4.0",
"semver": "^5.4.1",
"simple-git": "^1.85.0"
},
"keywords": [
"tradeshift",
"ts",
"ui",
"components",
"library",
"reusable",
"webcomponents",
"client-side",
"javascript",
"css",
"spiritual",
"edbml",
"tsml",
"edb"
],
"repository": "github:Tradeshift/tradeshift-ui.git",
"publishConfig": {
"access": "public"
}
}