-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "typevalue",
"version": "0.0.4",
"description": "Convert JavaScript values to their proper type. Handy for converting strings into their properly typed value.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --reporter spec",
"xprepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist"
},
"keywords": [
"typevalue",
"type",
"value",
"convert"
],
"author": "Chance O. One",
"license": "MIT",
"bugs": {
"url": "https://github.com/acidicchip/typevalue/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/acidicchip/typevalue.git"
},
"homepage": "https://github.com/acidicchip/typevalue#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"@types/requirejs": "^2.1.31",
"chai": "^4.1.2",
"chalk": "^2.3.2",
"mocha": "^5.0.4",
"typescript": "^2.7.2"
},
"dependencies": {
"moment": "^2.20.1"
}
}