-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.75 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
71
72
73
74
75
76
{
"name": "nmm-frontend",
"version": "1.0.0",
"description": "NMM Frontend",
"repository": {
"type": "git",
"url": "https://github.com/PistachoSoft/NMM-frontend.git"
},
"license": "UNLICENSED",
"dependencies": {
"es6-promise": "3.2.1",
"lodash": "4.15.0",
"react": "15.3.1",
"react-dom": "15.3.1",
"react-router": "2.8.0"
},
"devDependencies": {
"chai": "3.5.0",
"css-loader": "0.25.0",
"file-loader": "0.9.0",
"istanbul-instrumenter-loader": "0.2.0",
"karma": "1.3.0",
"karma-chai": "0.1.0",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-junit-reporter": "1.1.0",
"karma-mocha": "1.1.1",
"karma-phantomjs-launcher": "1.0.2",
"karma-sinon": "1.0.5",
"karma-source-map-support": "1.2.0",
"karma-spec-reporter": "0.0.26",
"karma-typescript-preprocessor2": "1.2.1",
"karma-webpack": "1.8.0",
"mocha": "3.0.2",
"node-sass": "3.9.3",
"phantomjs-prebuilt": "2.1.12",
"remap-istanbul": "0.6.4",
"rimraf": "2.5.4",
"sass-loader": "4.0.2",
"sinon": "1.17.5",
"sinon-chai": "2.8.0",
"source-map-loader": "0.1.5",
"style-loader": "0.13.1",
"ts-loader": "0.8.2",
"tslint-react": "1.0.0",
"typescript": "1.8.10",
"typings": "1.3.3",
"webpack": "1.13.2",
"webpack-dev-server": "1.15.1"
},
"scripts": {
"setup": "typings install",
"start": "npm run build:dev",
"clean": "npm run clean:tmp && npm run clean:dist && npm run clean:test",
"clean:dist": "rimraf dist",
"clean:test": "rimraf test/results",
"clean:tmp": "rimraf tmp",
"clean:tmp:test": "rimraf test/results/tmp",
"build": "npm run build:ts && npm run build:umd",
"build:dev": "webpack-dev-server --inline --content-base . --history-api-fallback --host 0.0.0.0",
"build:min": "webpack -p",
"build:umd": "webpack",
"build:w": "webpack -w",
"build:ts": "tsc -p tsconfig.json",
"lint": "npm run lint:app && npm run lint:test",
"lint:app": "tslint --project tsconfig.json --type-check -c tslint.json",
"lint:test": "tslint -c tslint.json test/**/*.ts",
"test": "npm run clean && npm run test:unit && npm run test:coverage",
"test:unit": "karma start test/config/karma.unit.conf.js",
"test:coverage": "karma start test/config/karma.coverage.conf.js && npm run istanbul:remap && npm run clean:tmp:test",
"istanbul:remap": "npm run istanbul:remap:html && npm run istanbul:remap:lcov",
"istanbul:remap:html": "remap-istanbul -i test/results/tmp/json/coverage.json -o test/results/coverage/html -t html -e test",
"istanbul:remap:lcov": "remap-istanbul -i test/results/tmp/json/coverage.json -o test/results/coverage/lcov/lcov.info -t lcovonly -e test"
}
}