-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.coffee
More file actions
33 lines (33 loc) · 856 Bytes
/
package.coffee
File metadata and controls
33 lines (33 loc) · 856 Bytes
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
fs = require 'fs'
find = require 'find'
find.file /^[^.].*\.agda$/, '.', (files) ->
fs.writeFile 'package.json', JSON.stringify
name: "agda-explore"
version: "0.0.1"
description: "Big operators as exploration functions in Agda"
main: "explore.agda"
scripts:
test: "echo \"Error: no test specified\" && exit 1"
files: [ "README.md" ].concat(files)
repository:
type: "git"
url: "https://github.com/crypto-agda/explore"
keywords: [
"agda"
"library"
"big-operators"
"fold"
"foldable"
]
author: "Nicolas Pouillard"
license: "BSD3"
bugs:
url: "https://github.com/crypto-agda/explore/issues"
homepage: "https://github.com/crypto-agda/explore"
dependencies:
"agda-nplib": ">= 0.0.1"
agda:
include: [
"."
"lib"
]