forked from spatialillusions/milsymbol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
49
50
51
{
"name": "milsymbol",
"version": "3.0.0",
"description": "Milsymbol.js is a small library in pure javascript that creates symbols according to MIL-STD-2525 and APP6.",
"main": "dist/milsymbol.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"type": "module",
"types": "index.d.ts",
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"lint": "eslint src test --fix",
"prebuild": "npm run lint && npm test",
"build": "npm run bundle && npm run minify",
"bundle": "rollup -c",
"minify": "uglifyjs dist/milsymbol.development.js -o dist/milsymbol.js --comments --compress --mangle --source-map",
"test": "tead --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/spatialillusions/milsymbol"
},
"author": "Måns Beckman (http://www.spatialillusions.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/spatialillusions/milsymbol/issues"
},
"homepage": "https://github.com/spatialillusions/milsymbol",
"devDependencies": {
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mil-std-2525": "^0.2.5",
"milstandard-e": "^0.2.13",
"nyc": "^17.0.0",
"prettier": "3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-copy": "^3.5.0",
"stanag-app6": "^0.2.0",
"tead": "^0.7.1",
"uglify-js": "^3.17.4"
},
"babel": {
"presets": "env"
}
}