-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 938 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
{
"name": "sudoku",
"version": "0.0.1",
"description": "Sudoku library in TypeScript.",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"typescript": {
"main": "./src/index.ts"
},
"scripts": {
"devtools": "npm install && typings install",
"tsc": "tsc",
"lint": "tslint -c tslint.json ./src/**/*.ts",
"test": "npm run tsc && mocha --reporter dot ./dist/**/*.spec.js",
"build": "npm run lint && npm run tsc",
"all": "npm run build && npm run test"
},
"author": "Marcus Bodin <[email protected]>",
"license": "MIT",
"dependencies": {
"btypescript": "https://github.com/bodinaren/bTypeScript"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify-umdify": "^1.0.3",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"tslint": "^3.12.1",
"typescript": "^1.8.10",
"typings": "^0.8.1",
"uglify-js": "^2.6.2",
"uglifyify": "^3.0.1"
}
}