mirror of
https://github.com/bendtherules/not-a-js-engine.git
synced 2026-08-18 13:52:36 +00:00
46 lines
980 B
JSON
46 lines
980 B
JSON
{
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"start": "tsdx watch",
|
|
"build": "tsdx build",
|
|
"test": "tsdx test",
|
|
"test:watch": "tsdx test --watch",
|
|
"lint": "tsdx lint",
|
|
"prepare": "tsdx build"
|
|
},
|
|
"peerDependencies": {},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "tsdx lint"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"name": "not-a-js-engine",
|
|
"author": "abhas.b",
|
|
"module": "dist/not-a-js-engine.esm.js",
|
|
"devDependencies": {
|
|
"husky": "^4.2.5",
|
|
"tsdx": "^0.13.2",
|
|
"tslib": "^2.0.1",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"dependencies": {
|
|
"acorn": "^7.4.0"
|
|
}
|
|
}
|