-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
60
61
{
"name": "js13k-lost",
"private": true,
"version": "1.0.0",
"description": "2017 js13k entry",
"scripts": {
"start": "webpack-dev-server --progress --colors",
"prebuild": "npm run clean",
"build": "webpack -p --progress --colors",
"postbuild": "npm run test",
"test": "jest",
"lint": "eslint src/**/*.js tests/**/*.js",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gjeck/js13k-lost.git"
},
"author": "Gregory Jeckell",
"license": "MIT",
"bugs": {
"url": "https://github.com/gjeck/js13k-lost/issues"
},
"homepage": "https://github.com/gjeck/js13k-lost#readme",
"devDependencies": {
"archiver": "^2.0.0",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"webpack": "^3.5.4",
"webpack-dev-server": "^2.7.1"
},
"babel": {
"env": {
"test": {
"presets": [
"es2015"
]
}
}
},
"dependencies": {
"jsfxr": "0.0.1"
}
}