-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 888 Bytes
/
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
{
"name": "css-objectifier",
"version": "0.0.1",
"description": "creates javascript objects from a css stylesheet",
"main": "index.js",
"scripts": {
"test": "mocha test/* --recursive --compilers js:babel/register"
},
"repository": {
"type": "git",
"url": "https://github.com/GGAlanSmithee/css-objectifier.git"
},
"keywords": [
"javascript",
"css",
"objectifier"
],
"author": "Alan Smithee",
"license": "MIT",
"bugs": {
"url": "https://github.com/GGAlanSmithee/css-objectifier/issues"
},
"homepage": "https://github.com/GGAlanSmithee/css-objectifier",
"dependencies": {
"babel": "^5.8.23",
"chai": "^3.3.0",
"css": "^2.2.1",
"css-parse": "^2.0.0",
"htmlparser2": "^3.8.3",
"mocha": "^2.3.3",
"radium": "^0.14.1"
},
"devDependencies": {
"jsdoc": "git+https://github.com/jsdoc3/jsdoc.git"
}
}