This repository has been archived by the owner on Nov 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.34 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
{
"name": "stylable-components",
"version": "0.6.4",
"description": "Fully-tested & strictly-typed component library based on React, using optional Wix styling.",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./lib",
"build": "tsc && stc --srcDir=src --outDir=dist/src --diagnostics",
"prepublish": "run-p lint build",
"lint": "tslint \"@(src|demo|test|test-kit)/**/*.ts?(x)\" -c tslint.json -p tsconfig.json",
"test": "run-s lint test:browser test:node",
"test:browser": "karma start --single-run",
"test:node": "mocha \"./test/node/**/*.node-spec.ts?(x)\" --watch-extensions ts,tsx --require ts-node/register --require stylable-integration/require",
"start": "webpack-dev-server --progress"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"stylable": "^4.0.0"
},
"dependencies": {
"debounce": "^1.1.0",
"html-overlays": "^0.0.21",
"keycode": "^2.1.9",
"mobx": "^3.3.1",
"mobx-react": "^4.3.4",
"prop-types": "^15.6.0",
"wix-react-tools": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/chai-dom": "^0.0.5",
"@types/mocha": "^2.2.44",
"@types/node": "8",
"@types/prop-types": "^15.5.2",
"@types/react": "15",
"@types/react-dom": "15",
"@types/sinon": "^4.0.0",
"@types/sinon-chai": "^2.7.29",
"@types/webpack-env": "^1.13.2",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^1.2.0",
"karma-webdriver-launcher": "^1.0.5",
"karma-webpack": "^2.0.6",
"mobx-react-devtools": "^4.2.15",
"mocha": "^4.0.1",
"mocha-loader": "^1.1.1",
"npm-run-all": "^4.1.2",
"react": "15",
"react-dom": "15",
"stylable": "^4.0.26",
"stylable-integration": "^6.0.0",
"test-drive-react": "^0.8.1",
"ts-loader": "^3.1.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-wix-react": "^6.0.3",
"typescript": "~2.5.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"license": "MIT",
"files": [
"dist/src",
"dist/test-kit",
"custom-typings"
],
"repository": {
"type": "git",
"url": "[email protected]:wix/stylable-components.git"
}
}