-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 865 Bytes
/
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
{
"name": "joop",
"version": "0.0.1",
"description": "class-oriented javascript programming",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build && npm i && tsc",
"build-win": "npm i && tsc",
"pretest": "npm run build-win",
"test": "mocha --require ts-node/register --ui mocha-typescript ./**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/eakarpov/joop.git"
},
"keywords": [
"js",
"oop",
"ts"
],
"author": "eakarpov",
"license": "MIT",
"bugs": {
"url": "https://github.com/eakarpov/joop/issues"
},
"homepage": "https://github.com/eakarpov/joop#readme",
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.2",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.14",
"ts-node": "^6.0.4",
"typescript": "^2.8.3"
}
}