forked from dwnusbaum/boyer-moore-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.37 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
{
"name": "boyer-moore-demo",
"version": "1.0.0",
"description": "Interactive demonstration of the Boyer-Moore string search algorithm.",
"homepage": "http://roza.github.io/boyer-moore-demo",
"main": "boyerMoore.js",
"scripts": {
"dev-server": "webpack-dev-server --content-base build",
"test": "jasmine-ts",
"tsc": "tsc",
"webpack": "webpack --config webpack.config.js",
"webpack-production": "set NODE_ENV=production && webpack -p --config ./webpack-production.config.js",
"predeploy": "npm run webpack",
"deploy": "gh-pages -d build"
},
"author": "Devin Nusbaum",
"license": "MIT",
"repository": "https://github.com/dwnusbaum/boyer-moore-demo",
"devDependencies": {
"@types/jasmine": "^2.8.17",
"@types/react": "^15.7.0",
"@types/react-dom": "^15.5.12",
"@types/react-modal": "^1.6.8",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.6.0",
"gh-pages": "^3.1.0",
"jasmine": "^2.99.0",
"jasmine-ts": "^0.2.1",
"react": "^15.7.0",
"react-dom": "^15.7.0",
"react-modal": "^1.9.7",
"source-map-loader": "^0.2.4",
"ts-loader": "^2.3.7",
"typescript": "^2.9.2",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.11.5"
},
"dependencies": {}
}