-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 937 Bytes
/
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
{
"name": "pure-c",
"version": "0.0.0",
"description": "A C backend for PureScript",
"main": "index.js",
"bin": {
"purec": "purec.js"
},
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"posix-getopt": "^1.2.0"
},
"devDependencies": {
"bower": "^1.8.4",
"pulp": "^12.3.0",
"purescript": "^0.13.2",
"spago": "^0.17.0"
},
"scripts": {
"test": "make check",
"build": "spago bundle-app -t purec.js",
"watch": "spago bundle-app -w -t purec.js",
"docs": "doxygen Doxyfile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pure-c/pure-c.git"
},
"keywords": [
"PureScript",
"C",
"backend"
],
"author": "Felix Schlitter <felixschlitter@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pure-c/pure-c/issues"
},
"homepage": "https://github.com/pure-c/pure-c#readme"
}