-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "typl",
"version": "0.3.0",
"description": "Optional type annotations and type-check linting in standard JS",
"main": "./lib/index.js",
"scripts": {
"test": "node scripts/node-tests.js",
"test:dist": "TEST_DIST=true npm test",
"test:package": "TEST_PACKAGE=true npm test",
"test:all": "npm test && npm run test:dist && npm run test:package",
"coverage": "istanbul cover scripts/node-tests.js",
"coverage:report": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build-core": "node scripts/build-core.js",
"build": "npm run build-core",
"prepare": "npm run build",
"prepublish": "npm run build && npm run test:all",
"publish": "npm run coverage:report"
},
"dependencies": {
"@babel/traverse": "~7.2.3",
"@babel/types": "~7.3.0",
"babylon": "~6.18.0",
"minimist": "~1.2.0"
},
"devDependencies": {
"coveralls": "~3.0.2",
"qunit": "~2.9.1",
"terser": "~3.14.1"
},
"repository": "getify/TypL",
"keywords": [
"types"
],
"bugs": {
"url": "https://github.com/getify/TypL/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/getify/TypL",
"author": "Kyle Simpson <[email protected]>",
"license": "MIT"
}