-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "toga-css",
"version": "1.0.0",
"description": "A CSS inline documentation-block parser.",
"keywords": [
"togaplugin",
"parser",
"css",
"hologram",
"kalei",
"kss",
"styledocco",
"styleguide",
"stylesheet"
],
"homepage": "https://github.com/togajs/toga-css",
"bugs": "https://github.com/togajs/toga-css/issues",
"license": "MIT",
"author": "Shannon Moeller <[email protected]> (http://shannonmoeller.com)",
"main": "dist/toga-css.js",
"repository": {
"type": "git",
"url": "https://github.com/togajs/toga-css.git"
},
"dependencies": {
"mtil": "^0.1.3",
"tunic": "^1.0.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-istanbul": "^0.3.19",
"coveralls": "^2.11.4",
"eslint": "^1.3.1",
"expect": "^1.9.0",
"mocha": "^2.3.0",
"nodemon": "^1.4.1",
"stream-array": "^1.1.1",
"toga": "^0.5.1",
"vinyl-fs": "^1.0.0"
},
"scripts": {
"all": "npm run lint && npm run test && npm run build",
"build": "babel src --out-dir dist",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src/*.js test/*.js",
"test": "babel-node node_modules/.bin/babel-istanbul cover --report text --report lcov --root src node_modules/.bin/_mocha -- 'test/*.js'",
"watch": "nodemon --exec 'npm run test' --watch src --watch test"
}
}