This repository was archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.25 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.25 KB
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
{
"name": "sparql-tool",
"version": "1.0.0",
"description": "SPARQL Tool",
"main": "dist/sparqljs.js",
"dependencies": {
"@types/jquery": "^3.3.31"
},
"devDependencies": {
"javascript-obfuscator": "^0.18.1",
"typedoc": "^0.15.0",
"typescript": "^3.6.4"
},
"scripts": {
"clean": "del dist\\sparqljs*.js && rd /s /q docs",
"tsc": "tsc",
"minify": "javascript-obfuscator dist\\sparqljs.js -o dist\\sparqljs.min.js --compact true --controlFlowFlattening false --deadCodeInjection false --debugProtection false --debugProtectionInterval false --disableConsoleOutput true --identifierNamesGenerator hexadecimal --log false --renameGlobals false --rotateStringArray true --selfDefending true --stringArray true --stringArrayEncoding false --stringArrayThreshold 0.75 --unicodeEscapeSequence false && del dist\\sparqljs.js",
"docs": "typedoc --out docs src",
"build": "npm run tsc && npm run docs",
"build:min": "npm run build && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://matmar3@bitbucket.org/SWI_Study/sparql_tool.git"
},
"keywords": [
"sparql",
"rdf"
],
"author": "Martin Matas",
"license": "MIT",
"homepage": "https://bitbucket.org/SWI_Study/sparql_tool#readme"
}