-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"author": "Dominic Chambers",
"name": "sync-import",
"description": "Synchronous import of modules for SystemJS",
"version": "0.0.3",
"main": "dist/index.js",
"keywords": [
"SystemJS",
"synchronous",
"import"
],
"homepage": "https://github.com/dchambers/sync-import",
"bugs": {
"url": "https://github.com/dchambers/sync-import/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dchambers/sync-import.git"
},
"scripts": {
"prepublish": "mkdirp dist && babel src/syncImport.js -o dist/index.js && browserify -t babelify -e src/syncImport.js -o dist/sync-import.js -s syncImport",
"test": "mocha --compilers js:babel/register src/URLUtils.js node_modules/systemjs/dist/system-csp-production.src.js test"
},
"dependencies": {
"bluebird": "^2.9.27"
},
"devDependencies": {
"babel": "^5.5.6",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"chai": "^3.0.0",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"systemjs": "^0.17.1"
}
}