source: node_modules/immutable/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 3.0 KB
Line 
1{
2 "name": "immutable",
3 "version": "3.8.2",
4 "description": "Immutable Data Collections",
5 "license": "MIT",
6 "homepage": "https://facebook.github.com/immutable-js",
7 "author": {
8 "name": "Lee Byron",
9 "url": "https://github.com/leebyron"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/facebook/immutable-js.git"
14 },
15 "bugs": {
16 "url": "https://github.com/facebook/immutable-js/issues"
17 },
18 "main": "dist/immutable.js",
19 "typings": "dist/immutable-nonambient.d.ts",
20 "typescript": {
21 "definition": "dist/immutable.d.ts"
22 },
23 "scripts": {
24 "build": "grunt default && gulp default",
25 "lint": "eslint src/ && grunt lint && gulp lint",
26 "testonly": "./resources/node_test.sh",
27 "test": "npm run lint && npm run testonly",
28 "perf": "node ./resources/bench.js",
29 "start": "npm run build && node ./pages/resources/start.js",
30 "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)"
31 },
32 "jest": {
33 "scriptPreprocessor": "resources/jestPreprocessor.js",
34 "testFileExtensions": [
35 "js",
36 "ts"
37 ],
38 "persistModuleRegistryBetweenSpecs": true
39 },
40 "devDependencies": {
41 "acorn": "0.11.x",
42 "babel-eslint": "^4.1.8",
43 "benchmark": "^1.0.0",
44 "bluebird": "3.1.1",
45 "browser-sync": "2.11.0",
46 "browserify": "^5.11.2",
47 "colors": "1.1.2",
48 "del": "2.2.0",
49 "es6-transpiler": "0.7.18",
50 "eslint": "^1.10.3",
51 "estraverse": "1.9.3",
52 "express": "^4.13.4",
53 "fbjs-scripts": "^0.5.0",
54 "grunt": "0.4.5",
55 "grunt-cli": "0.1.13",
56 "grunt-contrib-clean": "0.7.0",
57 "grunt-contrib-copy": "0.8.2",
58 "grunt-contrib-jshint": "0.11.3",
59 "grunt-release": "0.13.0",
60 "gulp": "3.9.0",
61 "gulp-concat": "2.6.0",
62 "gulp-filter": "3.0.1",
63 "gulp-header": "1.7.1",
64 "gulp-jest": "^0.2.1",
65 "gulp-jshint": "^1.8.4",
66 "gulp-less": "3.0.5",
67 "gulp-size": "2.0.0",
68 "gulp-sourcemaps": "1.6.0",
69 "gulp-uglify": "1.5.1",
70 "gulp-util": "3.0.7",
71 "harmonize": "1.4.4",
72 "jasmine-check": "^0.1.2",
73 "jest-cli": "^0.5.10",
74 "jshint-stylish": "^0.4.0",
75 "magic-string": "0.10.2",
76 "marked": "0.3.5",
77 "microtime": "^2.0.0",
78 "node-jsx": "^0.12.4",
79 "react": "^0.12.0",
80 "react-router": "^0.11.2",
81 "react-tools": "^0.12.0",
82 "rollup": "0.24.0",
83 "run-sequence": "1.1.5",
84 "through2": "2.0.0",
85 "typescript": "1.7.5",
86 "uglify-js": "2.6.1",
87 "vinyl-buffer": "1.0.0",
88 "vinyl-source-stream": "1.1.0"
89 },
90 "engines": {
91 "node": ">=0.10.0"
92 },
93 "files": [
94 "dist",
95 "contrib",
96 "README.md",
97 "LICENSE"
98 ],
99 "keywords": [
100 "immutable",
101 "persistent",
102 "lazy",
103 "data",
104 "datastructure",
105 "functional",
106 "collection",
107 "stateless",
108 "sequence",
109 "iteration"
110 ]
111}
Note: See TracBrowser for help on using the repository browser.