-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.39 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
{
"name": "tipsy",
"private": true,
"scripts": {
"grunt": "grunt",
"watch": "grunt default watch",
"watch-chrome": "grunt chrome-extension watch:chrome-extension",
"build": "grunt",
"build-chrome": "grunt chrome-extension",
"test": "grunt && grunt coverage",
"test-chrome": "grunt chrome-extension mochaTest:chrome-extension",
"postinstall": "npm dedupe && npm run python2",
"python2": "grunt shell:python2",
"cjs": "compile-modules convert -f commonjs shared/scripts/**/*.js -o cjs/"
},
"devDependencies": {
"chromedriver": "^2.26.1",
"es6-module-loader": "^0.15.0",
"es6-module-transpiler": "^0.10.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-compress": "^0.13.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-stylus": "^0.20.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-env": "^0.4.4",
"grunt-istanbul": "^0.4.0",
"grunt-mocha-test": "^0.12.7",
"grunt-shell": "^1.1.2",
"istanbul": "^0.3.7",
"istanbul-traceur": "^1.0.7",
"madge": "^0.4.1",
"mocha": "^2.2.0",
"promise": "^7.1.1",
"selenium-standalone": "^5.9.0",
"selenium-webdriver": "^2.51.0"
},
"dependencies": {
"combyne": "^2.0.0",
"jquery": "^2.1.3",
"moment": "^2.9.0",
"purecss": "^0.6.0",
"tablesort": "^3.0.2"
}
}