-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "zliq-stacktrace",
"version": "0.0.2",
"description": "router for the zliq web framework",
"main": "index.js",
"scripts": {
"test": "jest",
"tdd": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"build": "webpack --config webpack/build.js --output-filename=zliq-stacktrace.js --output-path=lib/",
"build:min": "webpack -p --config webpack/build_min.js --output-filename=zliq-stacktrace.min.js --output-path=lib/",
"build:all": "npm run build && npm run build:min",
"build:demo": "webpack --config webpack/demo.js",
"build:lib": "npm run build && npm run build:min",
"prepublishOnly": "npm test && rimraf lib/** && npm run build:lib"
},
"author": "Fabian <faboweber@gmail.com>",
"license": "MIT",
"dependencies": {
"sourcemapped-stacktrace": "git+https://github.com/novocaine/sourcemapped-stacktrace.git",
"zliq": "^1.6.4"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^20.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-h-jsx": "^1.0.0",
"babel-preset-babili": "0.0.12",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.24.0",
"jest": "^20.0.4",
"null-loader": "^0.1.1",
"rimraf": "^2.6.1",
"webpack": "2.6.1",
"webpack-node-externals": "^1.5.4",
"worker-loader": "^0.8.0"
},
"repository": {
"url": "https://github.com/faboweb/zliq-stacktrace.git",
"type": "git"
},
"jest": {
"setupFiles": [
"./test/helpers/rAF.js"
],
"moduleNameMapper": {
"\\.(css|scss|jpg|png)$": "<rootDir>/test/helpers/empty-module.js"
},
"collectCoverage": true,
"coverageDirectory": "./",
"coverageReporters": [
"lcov"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/demo/",
"/test/",
"/lib/"
],
"testURL": "http://localhost"
}
}