-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.11 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
{
"version": "0.6.1",
"description": "CSS tools that built to simplify CSS-in-JS styling",
"license": "MIT",
"private": false,
"name": "eo-css-tools",
"sideEffects": false,
"repository": "https://github.com/ibitcy/eo-css-tools.git",
"keywords": [
"array",
"data",
"update",
"comparsion",
"composition"
],
"scripts": {
"test": "yarn jest",
"build": "rm -rf lib && rollup --config ./rollup.config.js",
"prepare": "yarn build && yarn test"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "tests/.*.test[.](ts)",
"moduleFileExtensions": [
"ts",
"js"
]
},
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"core-js": "^3.5.0",
"expect": "^25.1.0",
"jest": "^25.1.0",
"rollup": "^1.30.0",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.0.0",
"typescript": "^3.7.3"
},
"dependencies": {}
}