-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 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
{
"name": "@norjs/web-client",
"version": "1.0.17",
"description": "The NorJS Web Runtime Environment",
"main": "client/app/index.js",
"directories": {
"doc": "docs"
},
"bin": {
"norjs": "./bin/norjs.sh"
},
"scripts": {
"compile": "babel src/bin --out-dir dist --presets=es2015",
"compile-watch": "babel --watch src --out-dir dist --presets=es2015",
"pretest": "npm run -s compile",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run -s compile",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norjs/web-client.git"
},
"keywords": [
"angularjs",
"webpack",
"es6",
"karma",
"javascript",
"ecmascript",
"nodejs",
"babel",
"runtime",
"runtime-environment"
],
"author": "Jaakko-Heikki Heusala <jheusala@iki.fi>",
"license": "MIT",
"bugs": {
"url": "https://github.com/norjs/web-client/issues"
},
"homepage": "https://github.com/norjs/web-client#readme",
"devDependenc
3BDC
ies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"mocha": "^5.2.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"moment": "^2.24.0",
"nor-exec": "^1.0.1"
}
}