This repository was archived by the owner on Sep 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
143 lines (143 loc) · 3.98 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "focus-components",
"version": "3.0.2-beta1",
"description": "Focus web components to build applications (based on Material Design)",
"main": "index.js",
"scripts": {
"babelify": "better-npm-run babelify",
"bundle": "better-npm-run bundle",
"copy-sass": "better-npm-run copy-sass",
"build": "node scripts/mdl-variables-copy.js && better-npm-run babelify && better-npm-run copy-sass && better-npm-run bundle",
"test": "better-npm-run test",
"test:watch": "better-npm-run test-watch",
"postinstall": "node scripts/mdl-variables-copy.js",
"profile": "better-npm-run profile",
"fix-lint": "eslint --fix src/** || exit 0",
"prepublish": "npm run build"
},
"betterScripts": {
"babelify": {
"env": {
"BABEL_ENV": "production"
},
"command": "node scripts/babelify.js"
},
"copy-sass": {
"command": "cd src && find . -name *.scss | xargs tar cvf - | tar xfp - -C ../"
},
"bundle": {
"command": "webpack --progress",
"env": {
"DEV": false,
"NODE_ENV": "production",
"LIBRARY_NAME": "FocusComponents",
"MINIMIFY": false,
"PACKAGE_JSON_PATH": "../",
"BABEL_ENV": "production"
}
},
"profile": {
"command": "webpack --progress --json --profile > profile.json",
"env": {
"DEV": false,
"NODE_ENV": "production",
"LIBRARY_NAME": "FocusComponents",
"MINIMIFY": false,
"PACKAGE_JSON_PATH": "../"
}
},
"test": {
"command": "mocha src/**/__tests__/**/*.js",
"env": {
"BABEL_ENV": "production"
}
},
"test-watch": {
"command": "mocha src/**/__tests__/**/*.js -w",
"env": {
"BABEL_ENV": "production"
}
}
},
"babel": {
"presets": [
"focus"
]
},
"repository": {
"type": "git",
"url": "https://github.com/KleeGroup/focus-components.git"
},
"keywords": [
"react",
"material-design-lite",
"focus"
],
"author": "Focus team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KleeGroup/focus-components/issues"
},
"homepage": "https://github.com/KleeGroup/focus-components",
"dependencies": {
"closest": "0.0.1",
"react-addons-css-transition-group": "^15.4.1",
"react-date-picker": "^3.1.6"
},
"peerDependencies": {
"i18next": ">= 4.1.0",
"lodash": ">= 4.15.0",
"material-design-lite": "1.2.1",
"material-design-icons-iconfont": ">= 2.0.4",
"react": ">= 15.4.1",
"react-dom": ">= 15.4.1",
"react-router": ">= 2.8.1",
"moment": ">= 2.14.1"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"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-preset-focus": "^0.6.1",
"babel-runtime": "^6.3.19",
"better-npm-run": "0.0.5",
"babel-plugin-transform-react-remove-prop-types": "^0.2.9",
"chai": "^3.2.0",
"chai-subset": "^1.0.1",
"css-loader": "^0.19.0",
"enzyme": "^2.4.1",
"eslint": "^2.3.0",
"eslint-config-focus": "0.3.0",
"eslint-plugin-filenames": "0.1.1",
"eslint-plugin-react": "3.5.0",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"json-loader": "^0.5.3",
"i18next": "^4.1.0",
"lodash": "^4.15.0",
"material-design-lite": "^1.2.1",
"material-design-icons-iconfont": "^2.0.4",
"mocha": "^2.2.5",
"moment": "^2.14.1",
"node-sass": "^3.3.3",
"react": "15.4.1",
"react-dom": "15.4.1",
"react-addons-test-utils": "15.4.1",
"react-hot-loader": "^1.3.0",
"react-router": "^2.8.1",
"sass-loader": "^2.0.1",
"jsdom": "^9.5.0",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-focus": "^0.11.4"
}
}