-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
38
39
40
{
"name": "slope",
"version": "0.2.2",
"description": "",
"main": "./dist/index",
"types": "./dist/index",
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "npm run build -- --watch",
"lint": "tslint -c tslint.json -p tsconfig.json; tslint -c tslint.json -p test/tsconfig.json",
"prepublish": "npm test",
"pretest": "npm run build; npm run lint; npm run test:build",
"test": "mocha --recursive ./test/dist",
"test:build": "tsc --project test/tsconfig.json",
"test:watch": "npm run test:build -- --watch & npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juhohei/slope.git"
},
"author": "Juho Heinisuo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/juhohei/slope/issues"
},
"homepage": "https://github.com/juhohei/slope#readme",
"devDependencies": {
"tslint": "5.0.0",
"typescript": "2.2.2",
"@types/chai": "^3.5.0",
"@types/mocha": "^2.2.40",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"files": [
"LICENSE",
"dist",
"index.d.ts"
]
}