-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.06 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
{
"name": "list-in-js",
"version": "0.0.1",
"description": "List in JS provides List like List of Haskell. List in JS implements [Fantasy Land Specification](https://github.com/fantasyland/fantasy-land). List is a Setoid, a Semigroup, a Monoid, a Functor, an Applicative Functor, Foldable, Traversable, a Chain and a Monad.",
"main": "dist/list.js",
"directories": {
"test": "test"
},
"scripts": {
"preversion": "npm test",
"version": "npm run build && gulp && git add -A",
"postversion": "git push && git push --tags",
"pretest": "npm run build",
"test": "mocha -R spec",
"build": "rollup src/list.js -c -o dist/list.js --name List"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/pandanoir/List-in-JS.git"
},
"author": "Naoto Ikuno <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pandanoir/List-in-JS/issues"
},
"homepage": "https://github.com/pandanoir/List-in-JS#readme",
"devDependencies": {
"mocha": "3.2.0",
"rollup": "0.36.4"
}
}