-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "sberney.com",
"version": "1.0.0",
"description": "Trivial javascript website",
"main": "index.js",
"scripts": {
"install": "jspm install && yarn build",
"start": "node index.js",
"build": "jspm bundle-sfx ./static/app/main.js ./static/dist/sberneycom.js --minify",
"test": "echo \"No test specified yet\"",
"ci-build": "yarn install && yarn test",
"watch": "npm-scripts-watcher"
},
"watch": {
"static/app/**/*": [
"build"
]
},
"author": "Sam B Berney",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sberney/sberney.com"
},
"engines": {
"node": "8.11.1"
},
"dependencies": {
"express": "^4.16.3",
"morgan": "^1.9.0"
},
"devDependencies": {
"jspm": "^0.16.53",
"npm-scripts-watcher": "^1.0.2"
},
"jspm": {
"directories": {
"baseURL": "static",
"packages": "static/libraries"
},
"configFile": "static/syscfg.js",
"dependencies": {
"lodash": "npm:lodash@^4.17.10"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}