-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
41
{
"name": "configurable-function",
"version": "0.0.3",
"description": "Configurable functions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib; tsc",
"lint": "tslint 'src/*.ts{,x}'; exit 0",
"prepublish": "npm run build",
"test": "mocha --compilers ts:ts-node/register,tsx:ts-node/register",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjewell/configurable-function.git"
},
"keywords": [],
"author": "Michael Jewell (http://github.com/mjewell)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjewell/configurable-function/issues"
},
"devDependencies": {
"@types/core-js": "0.9.36",
"@types/lodash": "4.14.55",
"@types/mocha": "^2.2.38",
"@types/node": "^6.0.41",
"mocha": "^3.2.0",
"ts-node": "^2.0.0",
"tslint": "^3.15.0-dev.0",
"tslint-eslint-rules": "^1.5.0",
"tslint-microsoft-contrib": "^2.0.12",
"typescript": "^2.2.2"
},
"dependencies": {},
"homepage": "https://github.com/mjewell/configurable-function#readme",
"directories": {
"test": "test"
}
}