immutable 3.7.4 → 3.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "immutable",
3
- "version": "3.7.4",
3
+ "version": "3.8.1",
4
4
  "description": "Immutable Data Collections",
5
- "homepage": "https://github.com/facebook/immutable-js",
5
+ "homepage": "https://facebook.github.com/immutable-js",
6
6
  "author": {
7
7
  "name": "Lee Byron",
8
8
  "url": "https://github.com/leebyron"
@@ -15,12 +15,18 @@
15
15
  "url": "https://github.com/facebook/immutable-js/issues"
16
16
  },
17
17
  "main": "dist/immutable.js",
18
+ "typings": "dist/immutable-nonambient.d.ts",
18
19
  "typescript": {
19
20
  "definition": "dist/immutable.d.ts"
20
21
  },
21
22
  "scripts": {
22
- "test": "./resources/node_test.sh",
23
- "perf": "node ./resources/bench.js"
23
+ "build": "grunt default && gulp default",
24
+ "lint": "eslint src/ && grunt lint && gulp lint",
25
+ "testonly": "./resources/node_test.sh",
26
+ "test": "npm run lint && npm run testonly",
27
+ "perf": "node ./resources/bench.js",
28
+ "start": "npm run build && node ./pages/resources/start.js",
29
+ "deploy": "(cd ./pages/out && git init && git config user.name \"Travis CI\" && git config user.email \"github@fb.com\" && git add . && git commit -m \"Deploy to GitHub Pages\" && git push --force --quiet \"https://${GH_TOKEN}@github.com/facebook/immutable-js.git\" master:gh-pages > /dev/null 2>1)"
24
30
  },
25
31
  "jest": {
26
32
  "scriptPreprocessor": "resources/jestPreprocessor.js",
@@ -31,28 +37,57 @@
31
37
  "persistModuleRegistryBetweenSpecs": true
32
38
  },
33
39
  "devDependencies": {
34
- "acorn": "^0.11.0",
40
+ "acorn": "0.11.x",
41
+ "babel-eslint": "^4.1.8",
35
42
  "benchmark": "^1.0.0",
36
- "bluebird": "^2.7.1",
37
- "colors": "^1.0.3",
38
- "es6-transpiler": "^0.7.18",
39
- "esperanto": "^0.6.0",
40
- "estraverse": "^1.9.1",
41
- "grunt": "^0.4.5",
42
- "grunt-contrib-clean": "^0.5.0",
43
- "grunt-contrib-copy": "^0.5.0",
44
- "grunt-contrib-jshint": "^0.10.0",
45
- "grunt-jest": "^0.1.0",
46
- "grunt-release": "^0.7.0",
43
+ "bluebird": "3.1.1",
44
+ "browser-sync": "2.11.0",
45
+ "browserify": "^5.11.2",
46
+ "colors": "1.1.2",
47
+ "del": "2.2.0",
48
+ "es6-transpiler": "0.7.18",
49
+ "eslint": "^1.10.3",
50
+ "estraverse": "1.9.3",
51
+ "express": "^4.13.4",
52
+ "fbjs-scripts": "^0.5.0",
53
+ "grunt": "0.4.5",
54
+ "grunt-cli": "0.1.13",
55
+ "grunt-contrib-clean": "0.7.0",
56
+ "grunt-contrib-copy": "0.8.2",
57
+ "grunt-contrib-jshint": "0.11.3",
58
+ "grunt-release": "0.13.0",
59
+ "gulp": "3.9.0",
60
+ "gulp-concat": "2.6.0",
61
+ "gulp-filter": "3.0.1",
62
+ "gulp-header": "1.7.1",
63
+ "gulp-jest": "^0.2.1",
64
+ "gulp-jshint": "^1.8.4",
65
+ "gulp-less": "3.0.5",
66
+ "gulp-size": "2.0.0",
67
+ "gulp-sourcemaps": "1.6.0",
68
+ "gulp-uglify": "1.5.1",
69
+ "gulp-util": "3.0.7",
70
+ "harmonize": "1.4.4",
47
71
  "jasmine-check": "^0.1.2",
48
- "magic-string": "^0.2.6",
49
- "microtime": "^1.2.0",
50
- "react-tools": "^0.11.1",
51
- "typescript": "~1.4.1",
52
- "uglify-js": "^2.4.15"
72
+ "jest-cli": "^0.5.10",
73
+ "jshint-stylish": "^0.4.0",
74
+ "magic-string": "0.10.2",
75
+ "marked": "0.3.5",
76
+ "microtime": "^2.0.0",
77
+ "node-jsx": "^0.12.4",
78
+ "react": "^0.12.0",
79
+ "react-router": "^0.11.2",
80
+ "react-tools": "^0.12.0",
81
+ "rollup": "0.24.0",
82
+ "run-sequence": "1.1.5",
83
+ "through2": "2.0.0",
84
+ "typescript": "1.7.5",
85
+ "uglify-js": "2.6.1",
86
+ "vinyl-buffer": "1.0.0",
87
+ "vinyl-source-stream": "1.1.0"
53
88
  },
54
89
  "engines": {
55
- "node": ">=0.8.0"
90
+ "node": ">=0.10.0"
56
91
  },
57
92
  "files": [
58
93
  "dist",