-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
37 lines (37 loc) · 911 Bytes
/
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
{
"name": "guid-typescript",
"version": "1.0.8",
"description": "Guid generator to typescript",
"scripts": {
"verify": ".\\node_modules\\.bin\\tslint .\\lib\\**",
"test": "npm run verify && mocha -r ts-node/register tests/*.spec.ts",
"build": ".\\node_modules\\.bin\\tsc lib/guid -t es3 -m commonjs -d --outDir dist"
},
"author": "nicolas",
"license": "ISC",
"keywords": [
"typescript",
"guid",
"identifier"
],
"main": "./dist/guid.js",
"types": "./dist/guid.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/NicolasDeveloper/guid-typescript"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/mocha": "^2.2.46",
"@types/node": "^9.3.0",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.8.0",
"typescript": "^3.1.3"
},
"dependencies": {},
"files": [
"/dist/"
]
}