-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "react-prefix-loader",
"version": "1.0.2",
"description": "Webpack loader that prefixes classes in React components",
"main": "lib/index.js",
"scripts": {
"prepublish": "babel --optional runtime src --out-dir lib",
"postpublish": "rm -rf lib",
"lint": "standard | snazzy",
"test": "./node_modules/.bin/mocha test/*.mocha.js --bail --reporter spec --require babel-polyfill --compilers js:babel-register"
},
"repository": "vmakhaev/react-prefix-loader",
"keywords": [
"react",
"webpack"
],
"author": "Vladimir Makhaev",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.24.0",
"babel-runtime": "^6.3.19",
"mocha": "^3.2.0",
"snazzy": "^2.0.1",
"standard": "^5.4.1"
},
"standard": {
"globals": [
"assert",
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
],
"parser": "babel-eslint"
}
}