This repository has been archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "react-stylename",
"version": "0.2.0",
"description": "Seamless integration of CSS modules with React components",
"author": {
"name": "texttechne",
"email": "[email protected]"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/texttechne/react-stylename-transform"
},
"bugs": {
"url": "https://github.com/texttechne/react-stylename-transform/issues"
},
"keywords": [
"css-modules",
"stylename",
"classname",
"react",
"transform",
"babel",
"react-component"
],
"license": "MIT",
"scripts": {
"clean": "rimraf lib && rimraf .tmp && rimraf coverage",
"compile": "babel -d lib/ src/",
"compileFixtures": "babel --plugins ./lib/transform.js -d .tmp/ test/fixture",
"prepublish": "npm run clean && npm run compile",
"test": "npm run compile && mocha test/test.js",
"testSource": "mocha --compilers js:babel-register test/testSource.js",
"cover": "npm run clean && npm run compile && istanbul cover -x \"**/test/**\" node_modules/mocha/bin/_mocha test/*.js"
},
"dependencies": {
"array.prototype.findindex": "^1.0.0",
"babel-core": "6.4.0",
"babel-plugin-syntax-jsx": "6.3.13",
"classnames": "^2.2.3",
"lodash.isfunction": "^3.0.6"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-1": "6.3.13",
"chai": "2.3.0",
"coveralls": "2.11.6",
"istanbul": "0.4.2",
"mocha": "2.3.4",
"node-jsx": "0.12.4",
"react": "0.14.6",
"react-dom": "0.14.6",
"rimraf": "^2.5.0",
"sinon": "^1.17.3"
}
}