-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.72 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
{
"name": "themz",
"version": "2.0.0",
"description": "Selectors for theming in StyledComponents and JSS",
"main": "dist/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint src",
"test:unit": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 jest",
"build": "cross-env NODE_ENV=production babel -d ./dist ./src",
"prepublish": "npm run test",
"dev": "npm run build -- --watch",
"clean": "rimraf ./dist ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LestaD/themz.git"
},
"keywords": [
"theme",
"styled",
"components",
"jss",
"react",
"select",
"object",
"plain",
"assign",
"deep"
],
"author": "Sergey Sova <i.am@lestad.net> (https://lestad.top)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LestaD/themz/issues"
},
"homepage": "https://github.com/LestaD/themz#readme",
"dependencies": {
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.21.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-ramda": "^1.2.0",
"babel-preset-es2015": "^6.18.0",
"cross-env": "^5.0.1",
"eslint": "^4.8.0",
"eslint-config-atomix-base": "^4.1.0",
"eslint-plugin-import": "^2.6.1",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"rimraf": "^2.5.4"
},
"typings": "index.d.ts",
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"unmockedModulePathPatterns": [
"ramda"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov"
],
"testRegex": "/test/.*\\.js$"
}
}