-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"version": "3.2.1",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dylanonelson/enumfactory"
},
"keywords": [
"enum",
"enumeration",
"java"
],
"scripts": {
"build": "babel src -d lib",
"build:test": "webpack --colors --progress --config=webpack.config.test.js",
"pretest": "npm run build",
"pretest:server:dev": "NODE_ENV=development npm run build:test",
"pretest:server:prd": "NODE_ENV=production npm run build:test",
"start:tmux": "tmux split-window \"npm run watch:build:test\" && tmux select-layout main-vertical && npm run watch:test:server",
"test": "npm run test:server:dev && npm run test:server:prd",
"test:server": "mocha ./test/dist/",
"test:server:dev": "npm run test:server",
"test:server:prd": "npm run test:server",
"test:browser": "open ./test/dist/index.html",
"watch:build": "npm run build -- --watch",
"watch:build:test": "npm run build:test -- --watch",
"watch:test:server": "mocha ./test/dist/ -w"
},
"author": "Dylan Nelson",
"license": "ISC",
"name": "enumfactory",
"dependencies": {
"check-types": "^7.1.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"eslint": "^3.15.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"ws": "^2.0.2"
}
}