-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "broccoli-leasot",
"version": "1.6.1",
"author": "Sivakumar Kailasam (http://github.com/sivakumar-kailasam)",
"description": "A broccoli plugin which wraps around the leasot module to parse and output TODOs and FIXMEs from comments in your files",
"license": "MIT",
"bugs": {
"url": "https://github.com/sivakumar-kailasam/broccoli-leasot/issues"
},
"homepage": "https://github.com/sivakumar-kailasam/broccoli-leasot#readme",
"main": "lib/index.js",
"ember-addon": {
"main": "ember-addon-main.js",
"before": [
"ember-cli-uglify"
]
},
"scripts": {
"compile": "babel src/index.js -o lib/index.js",
"test": "mocha --compilers js:babel/register tests/*-test.js",
"cover": "babel-node -r ./node_modules/.bin/isparta cover --report html --report text --report lcov _mocha -- tests/*-test.js",
"test:watch": "wr 'clear && mocha --compilers js:babel/register tests/*-test.js' src/index.js tests --exec",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sivakumar-kailasam/broccoli-leasot.git"
},
"keywords": [
"broccoli-plugin",
"ember-addon",
"todo",
"fixme",
"comments",
"productivity",
"leasot"
],
"dependencies": {
"broccoli": "0.16.9",
"broccoli-filter": "1.2.3",
"chalk": "^2.0.1",
"leasot": "^4.8.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel": "5.8.34",
"broccoli-fixturify": "0.3.0",
"chai": "3.5.0",
"codeclimate-test-reporter": "^0.5.0",
"isparta": "4.0.0",
"istanbul": "0.4.3",
"mocha": "2.4.5",
"sinon": "1.17.4",
"sinon-chai": "2.8.0",
"strip-ansi": "^4.0.0",
"wr": "1.3.1"
}
}