-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 951 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 951 Bytes
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": "assembly-source",
"version": "1.0.0",
"description": "Create or change .NET assembly attributes in C# and JScript source code",
"license": "MIT",
"author": "Vincent Weevers",
"files": [
"index.js"
],
"scripts": {
"test": "standard && hallmark && depcheck && node test",
"fix:js": "standard --fix",
"fix:md": "hallmark --fix"
},
"dependencies": {
"esprima": "^4.0.0",
"is-options": "^1.0.1",
"pascal-case": "^3.1.1"
},
"devDependencies": {
"depcheck": "^1.2.0",
"hallmark": "^3.0.0",
"standard": "^14.3.4",
"tape": "^5.0.1"
},
"standard": {
"ignore": "test/fixtures/*.js"
},
"repository": "vweevers/assembly-source",
"bugs": "https://github.com/vweevers/assembly-source/issues",
"homepage": "https://github.com/vweevers/assembly-source",
"keywords": [
"assembly",
"csharp",
"dotnet",
"jscript"
],
"engines": {
"node": ">=10"
}
}