-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "json-to-geojson",
"version": "0.1.0",
"description": "Transform JSON to GeoJSON",
"main": "index.js",
"scripts": {
"build2": "babel src -d lib",
"start": "./node_modules/babel-cli/bin/babel-node.js --presets es2015,stage-2 ./",
"build": "./node_modules/babel-cli/bin/babel-node.js --presets es2015,stage-2 ./",
"test": "yarn run test -o --watch",
"test2": "jest",
"start0": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codesandbox-app/static-template.git"
},
"keywords": [],
"author": "Viacheslav Avdieiev",
"license": "ISC",
"bugs": {
"url": "https://github.com/codesandbox-app/static-template/issues"
},
"homepage": "https://github.com/codesandbox-app/static-template#readme",
"devDependencies": {
"nodemon": "^3.1.7"
},
"dependencies": {
"@babel/code-frame": "7.23.5",
"@babel/generator": "7.23.4",
"@babel/parser": "7.23.9",
"@babel/runtime": "7.26.0",
"@babel/types": "7.23.9",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-node6": "^11.0.0",
"babel-preset-stage-2": "^6.18.0",
"express": "^4.21.1",
"lodash": "^4.17.4",
"superagent": "^8.1.2"
}
}