forked from klee-contrib/focus-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.71 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
{
"name": "focus-core",
"version": "2.3.0-beta1",
"description": "Focus library core part.",
"main": "index.js",
"babel": {
"presets": [
"focus"
]
},
"repository": {
"type": "git",
"url": "https://github.com/KleeGroup/focus-core.git"
},
"keywords": [
"spa",
"react",
"es6"
],
"author": "[email protected]",
"documentation": "http://kleegroup.github.io/focus-docs/",
"license": "MIT",
"homepage": "https://github.com/KleeGroup/focus-core",
"bugs": {
"url": "https://github.com/KleeGroup/focus-core/issues"
},
"scripts": {
"build": "better-npm-run babelify",
"test": "better-npm-run test",
"test:watch": "better-npm-run test-watch",
"prepare": "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"
},
"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"
}
}
},
"peerDependencies": {
"create-react-class": "^15.6.2",
"moment": "^2.20.1",
"numeral": "^2.0.6",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"flux": "3.1.3",
"i18next": "10.4.1",
"immutable": "3.8.2",
"lodash": "3.10.1",
"object-assign": "4.1.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",
"eslint-config-focus": "0.6.0",
"jest-cli": "22.4.0",
"jsdom": "11.6.2",
"moment": "2.20.1",
"numeral": "2.0.6",
"prop-types": "15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0"
}
}