-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
97 lines (97 loc) · 2.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@panorama/toolkit",
"version": "0.1.16",
"description": "Panorama visualization toolkit",
"main": "dist/components.min.js",
"scripts": {
"start": "npm run clean:examples && webpack-dev-server --config ./examples/webpack.config.js --hot --inline --content-base examples/public",
"test": "jest",
"lint": "eslint ./src",
"build:examples": "npm run clean:examples && webpack --config ./examples/webpack.config.ghpage.js",
"clean:examples": "rm -rf ./examples/public/examples.*",
"publish:examples": "./.bin/publish-examples.sh",
"build:dist": "npm run clean:dist && webpack --config ./src/webpack.config.dist.js && webpack --config ./src/webpack.config.dist.min.js",
"clean:dist": "rm -rf ./dist/**",
"clean:dist-modules": "rm -rf ./dist-modules/**",
"build:dist-modules": "npm run clean:dist-modules && webpack --config ./src/webpack.config.modules.js && babel ./src/main.js --out-file ./dist-modules/index.js",
"publish:dist": "./.bin/publish-dist.sh",
"analyze": "webpack --json --config ./src/webpack.config.js | analyze-bundle-size"
},
"repository": {
"type": "git",
"url": "git+https://github.com/americanpanorama/panorama.git"
},
"keywords": [
"visualization",
"geospatial",
"maps",
"mapping",
"dataviz",
"geoviz"
],
"author": "stamen",
"license": "ISC",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.20",
"bundle-loader": "^0.5.4",
"clean-webpack-plugin": "^0.1.3",
"css-loader": "^0.19.0",
"eslint": "^1.7.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.9.0",
"estraverse": "^4.1.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"git-directory-deploy": "^1.3.0",
"jest-cli": "^0.5.4",
"json-loader": "^0.5.3",
"jsx-loader": "^0.13.2",
"node-sass": "^3.3.3",
"react-addons-test-utils": "^0.14.0",
"sass-loader": "^3.0.0",
"style-loader": "^0.12.4",
"topojson": "^1.6.19",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-bundle-size-analyzer": "^1.2.0",
"webpack-dev-server": "^1.12.1",
"webpack-merge": "^0.2.0"
},
"dependencies": {
"lodash": "^3.10.1"
},
"peerDependencies": {
"cartodb-client": "stamen/cartodb-client",
"d3": "^3.5.6",
"intro.js": "^1.1.1",
"leaflet": "^0.7.7",
"queue-async": "^1.0.7",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-leaflet": "^0.9.0",
"react-modal": "^0.6.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"scriptPreprocessor": "<rootDir>/lib/preprocessor.js",
"testPathDirs": [
"<rootDir>/src"
],
"testPathIgnorePatterns": [
"node_modules",
"build"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs"
]
}
}