-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "serve-jspm",
"version": "1.1.4",
"description": "Express middleware to compile, cache and serve JSPM javascripts on the server. Much much faster than compiling with babel in the browser.",
"repository": "virtkick/node-serve-jspm",
"author": "Damian Kaczmarek <[email protected]>",
"license": "MIT",
"keywords": [],
"main": "es5/serve-jspm.js",
"dependencies": {
"bluebird": "^3.4.6",
"memoizee": "^0.4.1",
"mime-types": "^2.1.13",
"mkdirp": "^0.5.1"
},
"peerDependencies": {
"jspm": "0.17.0-beta.41"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-async-to-module-method": "^6.22.0",
"babel-preset-es2015-node6": "^0.4.0",
"chai": "^3.5.0",
"fast-async": "^6.1.2",
"jspm": "0.17.0-beta.41",
"mocha": "^3.2.0",
"request": "^2.79.0"
},
"scripts": {
"build": "babel src -d es5 -s inline",
"prepublish": "npm run build",
"prepare-tests": "for file in $(find tests/ -name jspm.config.js);do (cd $(dirname $file) && jspm install);done",
"test": "npm run build && mocha -t 5000 tests"
}
}