-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
37 lines (37 loc) · 1.06 KB
/
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
36
37
{
"name": "judgejs",
"version": "1.0.4",
"description": "A lightweight vanilla JavaScript library for judging",
"main": "lib/judge.min.js",
"typings": "types/index.d.ts",
"scripts": {
"start": "npm run tsc && npm run rollup && npm run minify && npm run rimraf",
"tsc": "tsc judge.ts",
"rollup": "rollup judge.js --output.format cjs --output.file ./lib/judge.js",
"test": "mocha --compilers ts:ts-node/register test/test.ts",
"minify": "uglifyjs lib/judge.js --output lib/judge.min.js",
"rimraf": "rimraf judge.js lib/judge.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hawx1993/judge.git"
},
"keywords": [
"judge"
],
"author": "trigkit4",
"bugs": {
"url": "https://github.com/hawx1993/judge/issues"
},
"homepage": "https://github.com/hawx1993/judge#readme",
"dependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.35",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
}
}