forked from klee-contrib/focus-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.17 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "focus-components",
"version": "2.3.0-beta4",
"description": "Focus component repository.",
"main": "index.js",
"scripts": {
"babelify": "better-npm-run babelify",
"copy-sass": "better-npm-run copy-sass",
"build": "better-npm-run babelify && better-npm-run copy-sass",
"test": "better-npm-run test",
"test:watch": "better-npm-run test-watch",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext .js,.jsx --ignore-pattern __tests__ --ignore-pattern example --ignore-pattern awesomplete",
"lint:error": "eslint src --ext .js,.jsx --ignore-pattern __tests__ --ignore-pattern example --ignore-pattern awesomplete --quiet",
"fix-lint": "eslint src/** --ext .js,.jsx --fix --ignore-pattern __tests__ --ignore-pattern example --ignore-pattern awesomplete"
},
"betterScripts": {
"babelify": {
"env": {
"BABEL_ENV": "production",
"LEGACY_EXPORTS": "true"
},
"command": "node scripts/babelify.js"
},
"copy-sass": {
"command": "cd src && find . -name *.scss | xargs tar cvf - | tar xfp - -C ../"
},
"test": {
"command": "jest --config jest-config.js --runInBand --no-cache",
"env": {
"BABEL_ENV": "production",
"LEGACY_EXPORTS": "true"
}
},
"test-watch": {
"command": "jest --config jest-config.js --runInBand --watch ",
"env": {
"BABEL_ENV": "production",
"LEGACY_EXPORTS": "true"
}
}
},
"babel": {
"presets": [
"focus"
]
},
"repository": {
"type": "git",
"url": "https://github.com/KleeGroup/focus-components.git"
},
"keywords": [
"react",
"focus"
],
"author": "Focus Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KleeGroup/focus-components/issues"
},
"homepage": "https://github.com/KleeGroup/focus-components",
"peerDependencies": {
"focus-core": ">= 2.2.0 < 2.3",
"material-design-lite": "1.3.0",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-transition-group": "^1.2.1"
},
"dependencies": {
"closest": "0.0.1",
"lodash": "3.10.1",
"react-lazyload": "2.3.0",
"react-rte": "0.16.0",
"unorm": "1.4.1",
"uuid": "3.2.1"
},
"devDependencies": {
"babel-jest": "22.4.0",
"babel-preset-focus": "1.0.0",
"better-npm-run": "0.1.0",
"create-react-class": "15.6.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint-config-focus": "0.6.0",
"focus-core": "2.3.0-beta1",
"jest-cli": "22.4.0",
"jsdom": "11.6.2",
"material-design-lite": "1.3.0",
"moment": "2.20.1",
"numeral": "2.0.6",
"prop-types": "15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-transition-group": "1.2.1"
}
}