-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "minimist2",
"version": "1.0.1",
"description": "",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"files": [
"lib",
"out"
],
"scripts": {
"test": "npm run build && mocha -r ts-node/register src/**/*.spec.ts && tap minimist_tests/**/*.js",
"build": "tsc && ./node_modules/babel-minify/bin/minify.js ./out/index.js --outFile ./lib/index.min.js"
},
"author": {
"name": "Austin Hanson",
"email": "[email protected]",
"url": "http://www.austinhanson.com"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/mocha": "^2.2.46",
"@types/node": "^9.3.0",
"babel-minify": "^0.2.0",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"tap": "^11.0.1",
"tape": "^4.8.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"testling": {
"files": "minimist_tests/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
}
}