-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "fimp",
"version": "0.2.1",
"description": "Functional Immutable Programming",
"main": "lib/index.js",
"scripts": {
"test": "ava",
"watch": "ava --watch",
"build": "rm -rf lib; mkdir lib; babel src -d lib;"
},
"keywords": [
"immutable",
"javascript",
"js",
"functuinal",
"fp"
],
"ava": {
"failFast": true,
"tap": true,
"powerAssert": false,
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"test/{**/,**/**/,}*_spec.js"
]
},
"author": "andreas.eldh@gmail.com",
"license": "MIT",
"repository": "/~https://github.com/eldh/fimp.git",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babel-watch": "^2.0.3",
"eslint": "^3.10.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1"
},
"dependencies": {
"immutable": "^3.8.1"
}
}