forked from fluid-project/infusion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "infusion",
"description": "Infusion is an application framework for developing flexible stuff with JavaScript",
"version": "3.0.0",
"author": "Fluid Project",
"bugs": "http://issues.fluidproject.org/browse/FLUID",
"homepage": "http://www.fluidproject.org/",
"license": "(BSD-3-Clause OR ECL-2.0)",
"keywords": [
"infusion",
"framework",
"application",
"fluid",
"IoC",
"Inversion of Control",
"MVC",
"evented"
],
"repository": "git://github.com/fluid-project/infusion.git",
"main": "./src/module/fluid.js",
"scripts": {
"prepare": "npm run loadDependencies && npm run buildStylus",
"prepublishOnly": "npm run buildDists",
"pretest": "node node_modules/rimraf/bin.js reports/* coverage/*",
"test": "npm run test:browser && npm run test:node",
"test:browser": "node node_modules/testem/testem.js ci --file tests/testem.js",
"test:node": "node node_modules/nyc/bin/nyc.js node tests/node-tests/basic-node-tests.js",
"test:vagrant": "vagrant up && vagrant ssh -c 'cd /home/vagrant/sync/; DISPLAY=:0 npm test'",
"test:vagrantBrowser": "vagrant up && vagrant ssh -c 'cd /home/vagrant/sync/; DISPLAY=:0 npm run test:browser'",
"test:vagrantNode": "vagrant up && vagrant ssh -c 'cd /home/vagrant/sync/; DISPLAY=:0 npm run test:node'",
"posttest": "node node_modules/nyc/bin/nyc.js report -r text-summary -r html",
"buildDists": "grunt buildDists",
"buildStylus": "grunt buildStylus",
"loadDependencies": "grunt loadDependencies"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"fluid-resolve": "1.3.0"
},
"devDependencies": {
"eslint-config-fluid": "1.3.0",
"gpii-grunt-lint-all": "1.0.5",
"gpii-testem": "2.1.11",
"grunt": "1.0.2",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-compress": "1.4.3",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-stylus": "1.2.0",
"grunt-contrib-uglify": "4.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-modulefiles": "0.4.0",
"grunt-shell": "3.0.1",
"hypher": "0.2.5",
"@fluid-project/hyphenation-patterns": "0.2.2-dev.20181115T221631Z.b2d0651",
"jquery": "3.3.1",
"jquery-simulate": "1.0.2",
"jquery-ui": "1.12.1",
"jquery-ui-touch-punch": "0.2.3",
"jquery.scrollto": "2.1.2",
"lodash": "4.17.11",
"ncp": "2.0.0",
"normalize.css": "8.0.1",
"nyc": "13.1.0",
"open-dyslexic": "1.0.3",
"opensans-webkit": "1.1.0",
"rimraf": "2.6.3",
"roboto-fontface": "0.10.0",
"sinon": "7.2.2",
"testem": "2.12.0",
"url-polyfill": "1.1.3",
"xhr-mock": "2.4.1",
"promise-polyfill": "8.1.3"
}
}