-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "ceri-webpack",
"description": "",
"version": "0.1.0",
"homepage": "https://github.com/cerijs",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/cerijs/ceri-webpack"
},
"engines": {
"node": "*"
},
"main": "lib/ceri-webpack.js",
"web": "lib/_ceri-config.js",
"files": [
"lib/*.js"
],
"dependencies": {
"document-register-element": "^1.9.0",
"fs-extra": "^6.0.1",
"read-conf": "^0.4.4"
},
"devDependencies": {
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.1",
"css-loader": "^0.28.11",
"memory-fs": "^0.4.1",
"script-runner": "^0.1.7",
"snapy": "^0.1.3",
"snapy-webpack": "^0.1.0",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.10.2"
},
"keywords": [
"ceri",
"webpack"
],
"readmeFilename": "README.md",
"scripts": {
"build": "coffee --bare --no-header --compile --output lib/ src/*.coffee",
"dev": "npm run build && ./cli.js",
"doc": "toDoc",
"test": "snapy",
"watch": "snapy --watch",
"preversion": "#npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
}
}