-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "immutable-ops",
"version": "0.7.0",
"description": "A collection of functions to perform immutable operations on plain JavaScript objects",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"test": "make test",
"prepare": "make build",
"build": "make build",
"lint": "make lint"
},
"keywords": [],
"author": "Tommi Kaikkonen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tommikaikkonen/immutable-ops.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"deep-freeze": "0.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^6.1.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"ramda": "^0.26.1"
}
}