-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
{
"name": "jss-rtl",
"description": "Flip styles using rtl-css-js",
"version": "0.3.0",
"author": {
"name": "Ali Taheri Moghaddar",
"email": "[email protected]"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:alitaheri/jss-rtl.git"
},
"keywords": [
"cssinjs",
"css-in-js",
"css in js",
"jss",
"plugin",
"rtl",
"css-rtl-js",
"reset"
],
"scripts": {
"build": "rimraf lib && tsc",
"prepublishOnly": "npm run build",
"lint": "tslint -e \"node_modules/**\" \"**/*.ts\"",
"test": "mocha --require ts-node/register \"src/**/*.spec.ts\""
},
"license": "MIT",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
"chai": "^4.2.0",
"jss": "^10.0.0",
"jss-preset-default": "^10.0.0",
"mocha": "^6.2.0",
"rimraf": "^3.0.0",
"ts-loader": "^6.1.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.6.3"
},
"peerDependencies": {
"jss": "^10.0.0"
},
"dependencies": {
"rtl-css-js": "^1.13.1"
}
}