-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.63 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
52
53
54
55
56
57
58
59
{
"name": "secret-js",
"version": "0.1.0",
"description": "hide encrypted text within the whitespace of any textfile",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node devServer.js",
"lint": "eslint src",
"test": "babel-node tests/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wjessup/secret-js.git"
},
"keywords": [
"secret",
"whitespace",
"encoder-js"
],
"author": "Will Jessup <will@willjessup.com> (http://github.com/wjessup)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wjesup/secret-js/issues"
},
"homepage": "https://github.com/wjessup/secret-js",
"devDependencies": {
"aes": "^0.1.0",
"babel-cli": "^6.7.5",
"babel-core": "^6.6.5",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^1.0.7",
"crypto-js": "^3.1.6",
"encoder-js": "^0.1.0",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.16.0",
"express": "^4.13.3",
"fs": "0.0.2",
"node-fs": "^0.1.7",
"polyfill": "^0.1.0",
"rimraf": "^2.4.3",
"string-just": "0.0.2",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.9.1"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}