-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 KB
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
{
"name": "ts-lib-string-utils",
"version": "1.0.0",
"description": "String format validator",
"repository": {
"type": "git",
"url": "https://github.com/raphael_volt/ts-lib-string-utils.git"
},
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc --pretty",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive test/**/*.spec.ts",
"watch:build": "nodemon --config nodemon.json --exec npm run build",
"watch:test": "nodemon --config nodemon.json --exec npm run test"
},
"author": {
"name": "raphael-volt",
"email": "raphael@.ketmie"
},
"main": "dist/ts-lib-string-utils.js",
"typings": "dist/ts-lib-string-utils.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/commander": "^2.9.1",
"@types/mocha": "^2.2.39",
"@types/mustache": "^0.8.29",
"@types/node": "^7.0.33",
"@types/sinon": "^2.3.0",
"chai": "^4.0.2",
"commander": "^2.11.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"sinon": "^2.3.6"
},
"dependencies": {
"core-js": "^2.4.1",
"node": "0.0.0",
"ts-node": "^3.1.0",
"typescript": "^2.4.1"
}
}