-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "babel-plugin-style-modules",
"version": "1.0.0",
"description": "A babel plugin designed to allow your className's to be more intuitive and easier to reason about",
"main": "lib/index.js",
"scripts": {
"remove-ds_store": "find . -name '.DS_Store' -type f -delete",
"test": "npm run remove-ds_store && babel-node ./test/index.js",
"build": "rm -rf lib && babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcursoli/babel-plugin-style-modules.git"
},
"author": "Joey Cursoli",
"license": "ISC",
"bugs": {
"url": "https://github.com/jcursoli/babel-plugin-style-modules/issues"
},
"homepage": "https://github.com/jcursoli/babel-plugin-style-modules#readme",
"dependencies": {
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"expect": "^1.20.2",
"fs": "0.0.1-security",
"react": "^15.4.2"
}
}