-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "mantra-lint",
"version": "0.0.1",
"description": "Check to what extent your app is aligned with Mantra spec",
"main": "lib/rules/linter.js",
"scripts": {
"test": "npm run-script compile && NODE_ENV=test ./node_modules/.bin/_mocha ./test/*_test.js --compilers js:babel-core/register",
"compile": "./node_modules/.bin/babel lib/ -d dist/",
"prepublish": "npm run-script compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sungwoncho/mantra-lint.git"
},
"keywords": [
"meteor",
"mantra",
"lint",
"linter"
],
"author": "Sung Won Cho <[email protected]> (https://sungwoncho.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sungwoncho/mantra-lint/issues"
},
"homepage": "https://github.com/sungwoncho/mantra-lint#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.2.0",
"mocha": "^2.4.5"
},
"dependencies": {
"acorn": "^3.0.4",
"fs-extra": "^0.26.5",
"glob": "^7.0.3",
"locater": "^1.3.0",
"lodash": "^4.6.1",
"minimatch": "^3.0.0"
}
}