forked from luke-chang/js-spatial-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "js-spatial-navigation",
"version": "0.1.0",
"description": "A javascript-based implementation of Spatial Navigation",
"scripts": {
"start": "node dist/app.js",
"dev": "webpack-dev-server",
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "babel ./src -d ./dist --ignore test.js && npm run browserify",
"browserify": "browserify dist/index.js -o dist/index.browserify.js",
"babel-node": "./node_modules/.bin/babel-node",
"pretest": "npm run build"
},
"engines": {
"node": "7.4.0",
"npm": "4.0.5"
},
"author": "Microsoft Corp.",
"license": "MIT",
"keywords": [],
"bugs": {
"url": "https://github.com/Microsoft/BotBuilder-Samples/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"browserify": "^14.1.0",
"file-loader": "^0.10.0",
"nodemon": "^1.11.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.1"
}
}