-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 859 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 859 Bytes
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
{
"name": "is-immutable",
"version": "1.0.3",
"description": "A function to test if an object is an immutable-js object",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir dist --presets=es2015",
"test": "./node_modules/.bin/jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whawker/is-immutable.git"
},
"keywords": [
"immutable"
],
"author": "Will Hawker",
"license": "MIT",
"bugs": {
"url": "https://github.com/whawker/is-immutable/issues"
},
"homepage": "https://github.com/whawker/is-immutable#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"immutable": ">=3.0.0",
"jasmine": "^2.7.0"
},
"optionalDependencies": {
"immutable": ">=3.0.0"
}
}