-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "@gardenhq/o",
"version": "8.0.1",
"description": "An in-browser loader, bundler and dependency injection builder.",
"author": {
"name": "GardenHQ",
"email": "[email protected]",
"url": "https://gardenhq.io/"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/gardenhq/o.git"
},
"devDependencies": {
"@gardenhq/js-test-harness": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"mocha-multi": "^0.11.0",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"main": "index.js",
"keywords": [
"bundler",
"loader",
"dependency-injection"
],
"scripts": {
"prepublish": "cd node_modules && cd ../ && make build",
"test": "mkdir -p ./test/results && npm run spec && npm run story",
"spec": "istanbul cover --config ./test/istanbul.yml ./node_modules/.bin/_mocha -- --recursive -R mocha-multi --reporter-options tap=./test/results/spec/mocha.tap,spec=- \"./test/spec/**/*.js\"",
"story": "mocha --recursive -R mocha-multi --reporter-options tap=./test/results/story/mocha.tap,spec=- \"./test/story/**/*.js\""
},
"publishConfig": {},
"dependencies": {
"@gardenhq/component-factory": "^1.4.0",
"@gardenhq/tick-control": "^2.0.0",
"@gardenhq/willow": "^6.2.0",
"babel-standalone": "^6.24.2",
"file-saver": "^1.3.3",
"mousetrap": "^1.6.1",
"ncp": "^2.0.0",
"rollup": "^0.41.6",
"rollup-plugin-memory": "^2.0.0",
"uglify-es": "^3.0.17"
},
"optionalDependencies": {
"js-yaml": "^3.8.4"
}
}