forked from klee-contrib/focus-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.54 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.54 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "focus-core",
"version": "0.16.0-beta0",
"description": "Focus library core part.",
"main": "index.js",
"babel": {
"presets": [
"stage-0",
"react",
"es2015"
],
"plugins": [
"transform-class-properties",
"transform-decorators-legacy",
"add-module-exports",
"transform-proto-to-assign",
[
"transform-es2015-classes",
{
"loose": true
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/KleeGroup/focus-core.git"
},
"keywords": [
"spa",
"react",
"es6"
],
"author": "focus@kleegroup.com",
"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": {
"babelify": "better-npm-run babelify",
"bundle": "better-npm-run bundle",
"test": "mocha src/**/__tests__/**/*.js",
"test:watch": "mocha src/**/__tests__/**/*.js -w",
"build": "better-npm-run babelify && better-npm-run bundle"
},
"betterScripts": {
"babelify": {
"command": "node scripts/babelify.js"
},
"bundle": {
"command": "webpack --progress",
"env": {
"DEV": false,
"NODE_ENV": "production",
"LIBRARY_NAME": "FocusCore",
"MINIMIFY": false,
"PACKAGE_JSON_PATH": "../"
}
}
},
"dependencies": {
"flux": "^2.0.3",
"i18next-client": "^1.11.4",
"immutable": "^3.7.3",
"keymirror": "^0.1.1",
"lodash": "^3.9.1",
"object-assign": "^2.0.0",
"uuid": "^2.0.1"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "4.1.3",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-runtime": "^1.0.7",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-classes": "^6.5.2",
"babel-plugin-transform-proto-to-assign": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"better-npm-run": "0.0.5",
"chai": "^3.2.0",
"chai-subset": "^1.1.0",
"css-loader": "^0.19.0",
"eslint": "1.5.1",
"eslint-config-focus": "0.3.0",
"eslint-plugin-filenames": "0.1.1",
"eslint-plugin-react": "3.5.0",
"express": "^4.12.2",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"jquery": "^2.1.4",
"json-loader": "^0.5.3",
"mocha": "^2.3.2",
"moment": "^2.10.6",
"node-sass": "^3.3.3",
"numeral": "^1.5.3",
"react": "^0.14.4",
"react-addons-test-utils": "^0.14.4",
"react-dom": "^0.14.4",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.0.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.11.0",
"webpack-focus": "^0.11.0"
}
}