-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "@marco-eckstein/js-utils",
"version": "0.11.1",
"description": "JavaScript utilities implemented in Typescript",
"main": "target/index.js",
"types": "target/index.d.ts",
"scripts": {
"_clean": "rimraf target",
"_compile": "tsc",
"_compile:watch": "tsc --watch",
"_lint": "tslint src/**/*.ts",
"_lint:watch": "chokidar src/**/*.ts --command \"npm run _lint\" --throttle 2000",
"_test": "jasmine target/*.js --helper=target/test/helper.js --stop-on-failure=",
"_test:watch": "chokidar target/*.js --command \"npm run _test\" --throttle 2000",
"pretest": "npm run _clean && npm run _compile && npm run _lint",
"test": "npm run _test",
"prepack": "npm test",
"start": "npm test && concurrently \"npm run _compile:watch\" \"npm run _lint:watch\" \"npm run _test:watch\"",
"standard-version": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marco-eckstein/js-utils.git"
},
"keywords": [],
"author": "Marco Eckstein <[email protected]>",
"contributors": [
"Marco Eckstein <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/marco-eckstein/js-utils/issues"
},
"homepage": "https://github.com/marco-eckstein/js-utils#readme.md",
"dependencies": {
"core-js": "^3.6.4",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@types/jasmine": "^3.5.5",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.1.0",
"jasmine": "^3.5.0",
"rimraf": "^3.0.2",
"standard-version": "^7.1.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}