-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "atom-easy-jsdoc",
"main": "./lib/index",
"version": "4.12.5",
"description": "JSDoc style comments for javascript development",
"activationCommands": {
"atom-workspace": [
"jsdoc:block"
],
"atom-text-editor": [
"editor:newline"
]
},
"license": "MIT",
"engines": {
"atom": ">=1.0.0"
},
"dependencies": {
"babel-traverse": "^6.26.0",
"babylon": "^6.18.0"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"chai-things": "^0.2.0",
"eslint": "^4.6.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^5.0.0"
},
"scripts": {
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"test:unit": "mocha --compilers js:babel-register tests/setup.js 'tests/unit/**/*.test.js'",
"test:integration": "mocha --compilers js:babel-register tests/setup.js 'tests/integration/**/*.test.js'",
"test:lint": "eslint ."
}
}