⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
n3
/
View File Name :
package.json
{ "name": "n3", "version": "1.16.3", "description": "Lightning fast, asynchronous, streaming Turtle / N3 / RDF library.", "author": "Ruben Verborgh <ruben.verborgh@gmail.com>", "keywords": [ "turtle", "rdf", "n3", "streaming", "asynchronous" ], "license": "MIT", "main": "./lib/index.js", "module": "./src/index.js", "sideEffects": false, "engines": { "node": ">=12.0" }, "files": [ ".babelrc", "src", "lib", "browser" ], "dependencies": { "queue-microtask": "^1.1.2", "readable-stream": "^4.0.0" }, "devDependencies": { "@babel/cli": "^7.16.0", "@babel/core": "^7.16.0", "@babel/preset-env": "^7.16.0", "@babel/register": "^7.16.0", "arrayify-stream": "^1.0.0", "browserify": "^17.0.0", "chai": "^4.0.2", "chai-things": "^0.2.0", "colors": "^1.1.2", "docco": "^0.8.0", "eslint": "^5.14.1", "mocha": "^8.0.0", "nyc": "^14.1.1", "pre-commit": "^1.2.2", "rdf-test-suite": "^1.19.2", "streamify-string": "^1.0.1", "uglify-js": "^3.14.3" }, "scripts": { "build": "npm run build:node && npm run build:browser", "build:node": "babel src -d lib", "build:browser": "rm -rf browser && mkdir browser && browserify -s N3 lib/index.js | uglifyjs > browser/n3.min.js", "test": "nyc npm run mocha", "mocha": "mocha", "lint": "eslint src perf test spec", "prepare": "npm run build", "spec": "npm run spec-turtle && npm run spec-ntriples && npm run spec-nquads && npm run spec-trig", "spec-earl": "npm run spec-earl-turtle && npm run spec-earl-ntriples && npm run spec-earl-nquads && npm run spec-earl-trig", "spec-ntriples": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/ntriples/manifest.ttl -i '{ \"format\": \"n-triples\" }' -c .rdf-test-suite-cache/", "spec-nquads": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/nquads/manifest.ttl -i '{ \"format\": \"n-quads\" }' -c .rdf-test-suite-cache/", "spec-turtle": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/turtle/manifest.ttl -i '{ \"format\": \"turtle\" }' -c .rdf-test-suite-cache/", "spec-trig": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/trig/manifest.ttl -i '{ \"format\": \"trig\" }' -c .rdf-test-suite-cache/", "spec-earl-ntriples": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/ntriples/manifest.ttl -i '{ \"format\": \"n-triples\" }' -c .rdf-test-suite-cache/ -o earl -p spec/earl-meta.json > spec/earl-ntriples.ttl", "spec-earl-nquads": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/nquads/manifest.ttl -i '{ \"format\": \"n-quads\" }' -c .rdf-test-suite-cache/ -o earl -p spec/earl-meta.json > spec/earl-nquads.ttl", "spec-earl-turtle": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/turtle/manifest.ttl -i '{ \"format\": \"turtle\" }' -c .rdf-test-suite-cache/ -o earl -p spec/earl-meta.json > spec/earl-turtle.ttl", "spec-earl-trig": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/trig/manifest.ttl -i '{ \"format\": \"trig\" }' -c .rdf-test-suite-cache/ -o earl -p spec/earl-meta.json > spec/earl-trig.ttl", "spec-clean": "rm -r .rdf-test-suite-cache/", "docs": "cd src && docco *.js -o ../docs && cd .." }, "repository": { "type": "git", "url": "https://github.com/rdfjs/N3.js.git" }, "bugs": { "url": "https://github.com/rdfjs/N3.js/issues" }, "pre-commit": [ "lint", "test" ] }