-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "unix-timestamp-converter",
"version": "1.0.0",
"description": "Chrome Extension for converting unix timestamps",
"main": "./js/scripts.js",
"scripts": {
"bundle": "webpack -p",
"dev": "webpack -d --watch",
"test": "mocha \"./test/**/*.spec.{js,jsx}\"",
"tdd": "mocha -w \"./test/**/*.spec.{js,jsx}\"",
"zip": "rm -f public/bundle.map.js && zip -r -X chrome-web-store.zip . -i public\\* -i \"index.html\" -i \"manifest.json\""
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-preset-react": "6.24.1",
"datejs": "1.0.0-rc3",
"jstimezonedetect": "1.0.5",
"jstz": "1.0.10",
"moment": "^2.22.1",
"react": "15.6.1",
"react-dom": "15.6.1"
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"babel-preset-es2017": "6.24.1",
"chai": "4.1.0",
"enzyme": "2.8.0",
"enzyme-adapter-react-15": "^1.0.1",
"jsdom": "11.1.0",
"mocha": "3.4.2",
"node-storage-shim": "^1.0.1",
"react-addons-test-utils": "^15.6.2",
"sinon": "4.0.1",
"source-map-loader": "^0.2.1",
"webpack": "3.4.1"
}
}