-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.5 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.5 KB
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": "d-pac.client",
"version": "0.13.9",
"build": "680",
"private": true,
"dependencies": {
"backbone.whenthen": "1.0.2",
"bows": "1.5.0",
"handlebars": "3.0.2",
"konfy": "0.2.1",
"lodash": "3.10.1",
"moment": "^2.18.1",
"node-uuid": "1.4.3",
"pdfobject": "^2.0.201604172"
},
"devDependencies": {
"babel-core": "6.7.4",
"babel-loader": "6.2.4",
"babel-polyfill": "6.7.4",
"babel-preset-es2015": "6.6.0",
"bluebird": "3.3.5",
"bower": "1.7.7",
"css-loader": "0.23.0",
"eslint": "2.11.1",
"eslint-config-prototypers": "0.2.0",
"exports-loader": "0.6.3",
"file-loader": "0.8.5",
"handlebars-loader": "1.0.2",
"html-webpack-plugin": "2.20.0",
"imports-loader": "0.6.3",
"jsdom": "9.0.0",
"less": "2.6.0",
"less-loader": "2.2.2",
"mocha": "2.4.5",
"must": "0.13.1",
"nightwatch": "0.8.18",
"pdf-viewer": "^0.8.1",
"proxyquire": "1.7.4",
"require-directory": "2.1.1",
"sinon": "1.17.4",
"style-loader": "0.13.0",
"url-loader": "0.5.7",
"webpack": "1.12.13",
"webpack-dev-server": "1.14.1"
},
"engines": {
"node": ">=0.10.0"
},
"config": {
"js_files": "src/scripts tests",
"dist_dir": "dist/"
},
"scripts": {
"bowerInstall": "bower install",
"clean:dist": "rm -rf ./$npm_package_config_dist_dir/*",
"copy:web": "cp -R ./src/web/. $npm_package_config_dist_dir",
"copy:pdfjs": "cp -R ./node_modules/pdf-viewer/ready/generic/. ./src/web/pdfjs",
"preview": "webpack-dev-server --devtool eval --progress --inline --verbose --port 9000 --host 0.0.0.0",
"compile": "webpack -dp --progress --colors --verbose",
"build": "$npm_execpath run clean:dist; $npm_execpath run copy:web && $npm_execpath run compile",
"test:units": "NODE_ENV=test DEBUG=dpac:tests* mocha tests/units/**/*.spec.js -R spec --bail --timeout 60000",
"preview:e2e": "NODE_ENV=test $npm_execpath run preview",
"import:fixtures": "./import-fixtures.sh",
"pretest:e2e": "$npm_execpath run import:fixtures",
"test:e2e": "NODE_ENV=test nightwatch --env chrome-mac32",
"pretest:e2e:sauce": "$npm_execpath run import:fixtures",
"test:e2e:sauce": "NODE_ENV=test nightwatch --env saucelabs-local",
"test": "$npm_execpath run test:units",
"lint": "eslint $npm_package_config_js_files && echo 'Linting finished!'",
"lint:fix": "eslint $npm_package_config_js_files --fix && echo 'Linting finished!'"
},
"babel": {
"presets": [
"es2015"
]
}
}