-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 833 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
37
38
39
40
41
{
"name": "eslint-plugin-microtemplates",
"version": "0.2.0",
"description": "ESLint plugin for linting Resig-style microtemplate strings.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"lodash",
"lodash-templates",
"micro-templates",
"resig-templates",
"underscore",
"underscore-templates"
],
"author": "Kevin Partington",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"unit-test": "mocha ./tests/**/*.js",
"test": "npm run lint && npm run unit-test"
},
"dependencies": {
"lodash.findlast": "^4.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.3.0",
"mocha": "^2.4.5"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"directories": {
"test": "tests"
}
}