-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 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
{
"name": "bidi-css-js",
"version": "0.0.0-development",
"description": "Logical, flow-ralative conversion for CSS in JS objects",
"main": "dist/bidi-css-js.cjs.js",
"jsnext:main": "dist/bidi-css-js.esm.js",
"module": "dist/bidi-css-js.esm.js",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build":
"rimraf dist && kcd-scripts build --bundle --environment BUILD_NAME:bidiCSSJS",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm run test -s -- --coverage --updateSnapshot",
"validate": "kcd-scripts validate",
"precommit": "kcd-scripts precommit"
},
"files": ["dist"],
"keywords": [
"bidi-css-in-js",
"css-in-js",
"flow-relative",
"logical-properties-and-values",
"ltr",
"rtl",
"cssjanus"
],
"author": "TxHawks <TofuxHawks@gmail.com> (https://githb.com/TxHawks)",
"license": "MIT",
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"kcd-scripts": "^0.16.0",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"rtl-css-js": "^1.9.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": ["node_modules", "coverage", "dist"],
"repository": {
"type": "git",
"url": "https://github.com/TxHawks/bidi-css-js.git"
},
"bugs": {
"url": "https://github.com/TxHawks/bidi-css-js/issues"
},
"homepage": "https://github.com/TxHawks/bidi-css-js#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}