nodename-core/package.json

28 lines
771 B
JSON
Raw Normal View History

{
"name": "nodename-core",
"version": "0.1.12",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
2018-05-17 08:02:17 +00:00
"test": "mocha src/test.ts --require ts-node/register",
"testwatch": "mocha src/test.ts --require ts-node/register --watch --watch-extensions ts"
},
"devDependencies": {
"@types/binary-parser": "^1.3.0",
2018-05-17 08:02:17 +00:00
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.8",
2018-05-17 08:02:17 +00:00
"chai": "^4.1.2",
"mocha": "^5.1.1",
"nodemon": "^1.17.4",
2018-05-17 08:02:17 +00:00
"typescript": "^2.8.3",
"ts-node": "^6.0.3"
},
"dependencies": {
"binary-parser": "^1.3.2"
}
}