-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.3 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
58
{
"name": "ferp",
"module": "ferp.esm.js",
"main": "ferp.min.js",
"description": "Build functional and pure applications in NodeJS and the Browser!",
"version": "2.1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/ferp-js/ferp.git"
},
"keywords": [
"functional",
"reactive",
"programming",
"frp",
"framework",
"elm-like",
"application",
"declarative"
],
"author": "Alex Barry",
"license": "MIT",
"bugs": {
"url": "https://github.com/ferp-js/ferp/issues"
},
"homepage": "https://github.com/ferp-js/ferp#readme",
"scripts": {
"test": "ava --verbose",
"test:coverage": "nyc ava",
"lint": "eslint ./src",
"build": "rollup -c",
"prepublishOnly": "yarn build",
"push": "yarn test && yarn publish"
},
"devDependencies": {
"@rollup/plugin-strip": "^1.3.2",
"ava": "^3",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.20.0",
"esm": "^3.2.25",
"nyc": "^15.1.0",
"rollup": "^2.26.8",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.0.3"
},
"ava": {
"color": true,
"files": [
"src/**/**/*.test.js"
],
"require": [
"esm"
]
}
}