-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 855 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": "ndollar-js",
"version": "0.6.1",
"description": "A port of $NRecognizer.",
"main": "dist/nDollar.js",
"types": "dist/nDollar.d.ts",
"scripts": {
"test": "jest",
"preinstall": "npm install autodts",
"build": "tsc -p ./src; ",
"postinstall": "autodts link",
"prepublish": "tsc && autodts generate"
},
"repository": {
"type": "git",
"url": "git@github.com:hereblur/NDollarJS.git"
},
"author": "Supasak Sutha",
"license": "MIT",
"typescript": {
"definition": "index.d.ts"
},
"dependencies": {
"autodts": "0.0.6"
},
"devDependencies": {
"@lib/autodts-generator": "0.0.2",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"jest": "^17.0.2",
"typescript": "latest"
},
"jest": {
"verbose": true,
"testRegex": "/tests/.*|\\\\.test\\\\.js$"
}
}