-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nodely",
"version": "1.1.1",
"description": "Write Node code using whatever syntax you want.",
"main": "lib/index.js",
"bin": {
"nodely": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"build": "./lib/index.js -s ./src -o ./lib -v && npm run gen-types",
"gen-types": "flow-copy-source --ignore \"**/__tests__/**\" src lib",
"postpublish": "codecov",
"prepublishOnly": "npm run build",
"test": "lintly src && flow && jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dogma-io/nodely.git"
},
"keywords": [
"babel",
"cluster",
"clustering",
"compile",
"compiler",
"es2015",
"es6",
"flow",
"flowjs",
"modules",
"node",
"transpile",
"transpiler"
],
"author": "Matthew Dahl <https://github.com/dogma-io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dogma-io/nodely/issues"
},
"homepage": "https://github.com/dogma-io/nodely#readme",
"devDependencies": {
"babel-core": "^7.0.0-0",
"babel-jest": "24.9.0",
"babel-preset-nodely": "0.4.2",
"codecov": "3.6.1",
"flow-copy-source": "2.0.9",
"jest": "24.9.0",
"jest-serializer-path": "0.1.15",
"lintly": "0.4.0"
},
"dependencies": {
"@babel/core": "^7.0.0",
"flow-bin": "0.116.1",
"glob": "^7.0.0",
"mkdirp": "0.5.1",
"node-watch": "0.6.3",
"yargs": "^15.0.0"
}
}