-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
{
"name": "learning-library",
"version": "1.0.0",
"description": "Personal digital library for learning resources.",
"main": "src/index.js",
"dependencies": {
"angular": "^1.6.4",
"angular-moment": "^1.0.1",
"angular-uuid": "0.0.4",
"ng-table": "^4.0.0"
},
"devDependencies": {
"angular-local-storage": "^0.5.2",
"angular-mocks": "^1.6.4",
"angular-ui-router": "1.0.0-rc.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"bootstrap": "^4.0.0-alpha.6",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.28.0",
"karma": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.1",
"karma-sinon-stub-promise": "^1.0.0",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"raw-loader": "^0.5.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"sinon-stub-promise": "^4.0.0",
"standard": "^10.0.2",
"static-site-generator-webpack-plugin": "^3.4.1",
"style-loader": "^0.16.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"test": "karma start karma.conf.js",
"lint": "eslint src",
"deploy": "npm run build && gh-pages -d build",
"build": "webpack --progress --colors",
"dev": "webpack-dev-server --progress --colors",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endlist/learning-library.git"
},
"author": "Li Wren",
"license": "ISC",
"bugs": {
"url": "https://github.com/endlist/learning-library/issues"
},
"homepage": "https://github.com/endlist/learning-library#readme"
}