-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "f",
"version": "0.1.0",
"description": "Native ES6 implementations of Haskell functions",
"main": "./lib/ƒ.js",
"directories": {
"test": "test",
"lib": "lib"
},
"babel": {
"env": {
"production": {
"plugins": [
"transform-es2015-modules-umd"
]
}
},
"presets": [
"es2015"
]
},
"scripts": {
"build:lib": "BABEL_ENV=production babel ./ƒ.js --out-dir lib",
"build": "npm run build:lib",
"prepublish": "npm test && npm run build",
"test": "mocha --harmony-proxies --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casualjs/f.git"
},
"keywords": [
"ƒ",
"haskell",
"es6",
"native"
],
"author": "Mateo Gianolio",
"license": "MIT",
"bugs": {
"url": "https://github.com/casualjs/f/issues"
},
"homepage": "https://github.com/casualjs/f#readme",
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.1.18",
"babel-core": "^6.1.21",
"babel-plugin-transform-es2015-modules-umd": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"mocha": "^2.3.3"
}
}