forked from e-jigsaw/node-purescript-bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.21 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
{
"name": "purescript",
"version": "0.11.7",
"description": "PureScript wrapper that makes it available as a local dependency",
"license": "ISC",
"repository": "purescript-contrib/node-purescript-bin",
"author": "Shinnosuke Watanabe (http://github.com/shinnn)",
"engines": {
"node": ">=6",
"npm": ">=4"
},
"bin": {
"purs": "purs.bin"
},
"scripts": {
"postinstall": "install-purescript --purs-ver=0.11.7 --name=purs.bin .",
"pretest": "eslint --format=codeframe index.js prepublish.js test.js",
"test": "node test.js",
"prepublishOnly": "node prepublish.js"
},
"files": [
"index.js",
"purs.bin"
],
"keywords": [
"cli",
"build",
"install",
"installation",
"fallback",
"purs",
"purescript",
"haskell",
"language",
"compile",
"compiler",
"bin",
"binary",
"binaries",
"wrapper"
],
"dependencies": {
"install-purescript-cli": "^0.2.0"
},
"devDependencies": {
"@shinnn/eslint-config-node": "^4.0.0",
"eslint": "^4.11.0",
"execa": "^0.8.0",
"lodash": "^4.17.4",
"lstat": "^1.0.0",
"semver-regex": "^1.0.0",
"tape": "^4.8.0"
},
"eslintConfig": {
"extends": "@shinnn/node"
}
}