-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.03 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
78
{
"name": "snapy",
"description": "Webpack based, snapshot only test runner",
"version": "0.1.6",
"homepage": "https://github.com/snapyjs/",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/snapyjs/snapy"
},
"engines": {
"node": "*"
},
"main": "lib/snapy-client.js",
"bin": {
"snapy": "cli.js"
},
"files": [
"lib/*.js",
"cli.js"
],
"dependencies": {
"acorn": "^5.7.1",
"chalk": "^2.4.1",
"fs-extra": "^6.0.1",
"grasp-equery": "^0.4.0",
"hook-up": "0.2.2",
"memory-fs": "^0.4.1",
"ora": "^2.1.0",
"read-conf": "^0.4.4",
"snapy-cache": "^0.1.0",
"snapy-entry": "^0.1.0",
"snapy-file": "^0.1.0",
"snapy-filter-obj": "^0.1.0",
"snapy-node": "^0.1.5",
"snapy-node-report": "^0.1.2",
"snapy-obj": "^0.1.2",
"snapy-promise": "^0.1.2",
"snapy-stream": "^0.1.0",
"snapy-transform-obj": "^0.1.0",
"source-map": "^0.7.3",
"source-map-support": "^0.5.6",
"virtual-module-webpack-plugin": "^0.4.0",
"webpack": "4.12.0",
"webpack-merge": "^4.1.3",
"yaku": "^0.18.6"
},
"devDependencies": {
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.1",
"coffee-cli": "^0.2.1",
"script-runner": "^0.1.7"
},
"keywords": [
"testrunner",
"snapy",
"snapshots",
"parallel",
"webpack"
],
"readmeFilename": "README.md",
"scripts": {
"build": "run-npm build:*",
"build:server": "coffee-cli --next --bare --no-header --compile --output lib/ src/*.coffee",
"build:client": "coffee-cli --bare --no-header --compile --output lib/ src/snapy-client.coffee src/util-client.coffee",
"dev": "npm run build && ./cli.js",
"doc": "toDoc",
"test": "coffee --nodejs --expose-internals src/snapy.coffee",
"watch": "snapy --watch",
"preversion": "#npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
}
}