-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "babel-plugin-transform-cssobj",
"version": "3.0.2",
"description": "Babel plugin to transform css into cssobj (CSS in JS engine), map class names into cssobj localized names",
"main": "index.js",
"directories": {
"test": "test"
},
"files": [
"index.js",
"transform-plugins.js"
],
"scripts": {
"objutil": "rollup -c ./node_modules/objutil/rollup.config.js --api defaults",
"build": "npm run objutil",
"pretest": "npm run build",
"test": "istanbul cover _mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssobj/babel-plugin-transform-cssobj.git"
},
"keywords": [
"babel",
"plugin",
"cssobj",
"transform",
"mapClass",
"jsx"
],
"author": "James Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cssobj/babel-plugin-transform-cssobj/issues"
},
"homepage": "https://github.com/cssobj/babel-plugin-transform-cssobj#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"gulp": "^3.9.1",
"gulp-bump": "^2.5.1",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"babel-plugin-syntax-jsx": "^6.18.0",
"cssobj-converter": "*",
"js-yaml": "*",
"objutil": "^2.0.7"
}
}