-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.91 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "ineedthis",
"version": "0.0.26",
"description": "Stateful dependency management",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && tsc -t es6 --outDir lib.es6/",
"build:watch": "tsc -w",
"test": "npm run build && npm run test:nobuild",
"test:nobuild": "mocha -r source-map-support/register $MOCHA_OPTS",
"test:watch": "nodemon --watch lib --watch test -x 'npm -s run test:nobuild'",
"lint": "eslint 'src/**/*.ts'",
"lint:watch": "nodemon --watch src -x 'npm -s run lint'",
"dev": "concurrently --prefix '[{name}]' --names 'TS,Mocha,Lint' 'npm run build:watch' 'npm run test:watch' 'npm run lint:watch'",
"clean": "rimraf lib lib.es6",
"prepare": "npm run build"
},
"bin": {
"ineedthis-debug": "./bin/ineedthis-debug",
"ineedthis-watch": "./bin/ineedthis-debug",
"ineedthis-run": "./bin/ineedthis-run"
},
"files": [
"lib",
"bin",
"lib.es6"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gpittarelli/ineedthis.git"
},
"keywords": [
"service",
"component",
"module",
"state",
"dependency"
],
"engines": {
"node": ">=4.0.0"
},
"author": "George Pittarelli",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpittarelli/ineedthis/issues"
},
"homepage": "https://github.com/gpittarelli/ineedthis#readme",
"devDependencies": {
"@types/node": "7.0.5",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"concurrently": "3.1.0",
"eslint": "^6.3.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"rimraf": "2.5.4",
"source-map-support": "0.4.11",
"typescript": "3.6.2"
},
"dependencies": {
"callsite": "1.0.0",
"chokidar": "1.7.0",
"require-reload": "0.2.2",
"resolve": "1.12.0"
}
}