forked from wix/stylable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "stylable",
"version": "4.0.26",
"description": "CSS for Components",
"license": "BSD-3-Clause",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"bundle": "webpack --config webpack.web.config.js",
"start": "webpack-dev-server --hot --inline",
"test": "npm run test:node",
"test:node": "ts-mocha \"./tests/**/*.spec.ts\"",
"prepublish": "npm run build",
"lint": "tslint --project ./tsconfig.json"
},
"dependencies": {
"css-selector-tokenizer": "^0.7.0",
"deindent": "^0.1.0",
"enhanced-resolve": "^3.4.1",
"lodash.clonedeep": "^4.5.0",
"murmurhash": "^0.0.2",
"postcss": "^6.0.13",
"postcss-js": "^1.0.1",
"postcss-nested": "^2.1.2",
"postcss-safe-parser": "^3.0.1",
"postcss-selector-matches": "^3.0.1",
"postcss-value-parser": "^3.3.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/enhanced-resolve": "^3.0.4",
"@types/mocha": "^2.2.44",
"@types/node": "8",
"chai": "^4.1.2",
"flat": "^4.0.0",
"glob": "^7.1.2",
"mocha": "^4.0.1",
"mocha-loader": "^1.1.1",
"ncp": "^2.0.0",
"ts-loader": "^3.1.0",
"ts-mocha": "^1.0.3",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.3"
},
"files": [
"dist",
"src",
"runtime.js",
"runtime.d.ts"
],
"repository": {
"type": "git",
"url": "[email protected]:wix/stylable.git"
},
"author": "Wix.com"
}