-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "TODO",
"version": "1.0.0",
"description": "TODO",
"main": "./lib/src/index.js",
"scripts": {
"start": "tsc && node lib/src/index.js",
"build": "tsc && npm run lint",
"build:publish": "npm run clean && npm run lint && tsc --sourceMap false && rm -rf lib/test",
"clean": "rm -rf .nyc_output coverage lib",
"lint": "tslint -p ./tsconfig.json",
"prepublishOnly": "rm -rf lib/test && npm run build:publish && npm run test",
"test": "tsc && nyc -r lcov -e .ts -x \"*.spec.ts\" jasmine-ts JASMINE_CONFIG_PATH=test/jasmine.json",
"__prepare_comment": "Prepare will NOT be executed in case of calling 'npm install --production'",
"prepare": "npm install tslint typescript -g"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TODO_USERNAME/TODO_PROJECT_NAME.git"
},
"keywords": [
"TODO",
"TODO"
],
"author": "TODO",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/jasmine": "2.5.35",
"@types/node": "10.10.1",
"istanbul": "1.1.0-alpha.1",
"jasmine": "2.5.2",
"jasmine-ts": "0.2.1",
"nyc": "13.0.1",
"ts-node": "1.6.0",
"tslint": "5.11.0",
"typescript": "2.9.2"
},
"bugs": {
"url": "https://github.com/TODO_USERNAME/TODO_PROJECT_NAME/issues"
},
"homepage": "https://github.com/TODO_USERNAME/TODO_PROJECT_NAME#readme",
"dependencies": {
"fs-extra": "^7.0.0",
"pad-left": "^2.1.0"
}
}