-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@dschnare/anna",
"version": "3.0.0",
"description": "Anna is a file type agnostic static analyzer",
"main": "lib/index.js",
"scripts": {
"test": "mocha lib/**/*.test.js lib/*.test.js",
"changelog": "node tools/changelog",
"tag-edge": "node tools/tag",
"tag-prerelease": "node tools/tag --prerelease",
"tag-release": "node tools/tag --release"
},
"keywords": [
"static",
"analysis",
"analyze",
"es2015",
"commonjs",
"vuejs"
],
"author": "Darren Schnare <[email protected]>",
"license": "MIT",
"files": [
"lib",
"README.md"
],
"repository": {
"url": "https://github.com/dschnare/anna",
"type": "git"
},
"bugs": {
"url": "https://github.com/dschnare/anna/issues"
},
"devDependencies": {
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"mocha": "^3.2.0",
"semver": "^5.3.0"
},
"dependencies": {},
"engines": {
"node": ">=6.*"
}
}