-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "ceri-loader",
"description": "webpack loader, that wraps ceri-compiler",
"version": "1.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-loader"
},
"engines": {
"node": "*"
},
"main": "lib/loader.js",
"files": [
"lib/*.js"
],
"dependencies": {
"ceri-compiler": "^1.1.0",
"loader-utils": "^1.1.0"
},
"devDependencies": {
"chai": "^4.0.2",
"coffeescript": "^2.0.0-beta2",
"mocha": "^3.4.2",
"rimraf": "^2.6.1"
},
"keywords": [
"ceri",
"loader",
"webpack"
],
"readmeFilename": "README.md",
"scripts": {
"clean": "rimraf lib/*",
"prebuild": "npm run clean",
"build": "coffee --no-header --compile --output lib/ src/*.coffee",
"watch": "coffee --no-header --compile --watch --output lib/ src/*.coffee",
"test": "mocha",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
}
}