-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
47
48
49
50
{
"name": "babel-plugin-contracts",
"version": "2.0.0",
"description": "Design by Contract for JavaScript via a Babel plugin.",
"main": "lib/index.js",
"scripts": {
"build": "babel --plugins @babel/plugin-syntax-flow,@babel/plugin-transform-flow-strip-types -d ./lib ./src",
"build-typed": "npm run build && babel --plugins ./lib,@babel/plugin-syntax-flow,@babel/plugin-transform-flow-strip-types -d ./lib-checked ./src",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha ./test/index.js",
"test-checked": "npm run build-typed && CONTRACTS_USE_LIBCHECKED=1 mocha ./test/index.js",
"watch": "NODE_WATCH=1 mocha --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/codemix/babel-plugin-contracts"
},
"keywords": [
"babel",
"babel-plugin",
"design by contract",
"types",
"typing",
"contracts",
"type check",
"dbyc"
],
"author": "Charles Pick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/babel-plugin-contracts/issues"
},
"homepage": "https://github.com/codemix/babel-plugin-contracts",
"dependencies": {
"@babel/generator": "^7.4.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"mocha": "~6.1.2",
"should": "^13.2.3"
}
}