forked from alexisvincent/systemjs-config-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 750 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 750 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
{
"name": "systemjs-config-builder",
"version": "0.0.9",
"description": "Generate SystemJS config files from node_modules",
"main": "dist/index.js",
"scripts": {
"start": "npm run dev & nodemon -d 1 -w lib && fg",
"dev": "babel lib -d dist --copy-files --watch",
"build": "babel lib -d dist --copy-files"
},
"repository": {
"url": "https://github.com/alexisvincent/systemjs-config-builder",
"type": "git"
},
"author": "Alexis Vincent <alexisjohnvincent@gmail.com>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"graceful-fs": "^4.1.10",
"jspm-npm": "^0.30.1",
"lodash": "^4.17.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
}
}