This repository has been archived by the owner on Apr 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.01 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
{
"name": "hello-world-emo",
"version": "2.1.4",
"description": "A hello world npm module whose main purpose is to experiment a 'modern' (typescript / ES6) module declaration and its consumption by various environments, including legacy.",
"repository": {
"type": "git",
"url": "git+https://github.com/Offirmo/hello-world-npm.git"
},
"keywords": [
"hello"
],
"author": "Offirmo <offirmo.net@gmail.com>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Offirmo/hello-world-npm/issues"
},
"homepage": "https://github.com/Offirmo/hello-world-npm#readme",
"engines": {
"node": ">=4",
"npm": ">=3"
},
"main": "dist/index.node-stable.js",
"jsnext:main": "dist/es6/index.js",
"typings": "dist/es6/index.d.ts",
"browser": "dist/hello_world_emo.umd.js",
"scripts": {
"__prod": "~~~~~~~ PRODUCTION ~~~~~~~",
"test": "echo 'should write tests ;-)'",
"test:quick": "test/quick/index.ts",
"test:interactive": "test/interactive/index.js",
"build": "node scripts/build.js",
"np": "np",
"__dev": "~~~~~~~ DEVELOPMENT ~~~~~~~",
"dev1": "tsc --watch",
"tslint": "npm run _all_own_ts_files -- tslint",
"__misc": "~~~~~~~ MISC ~~~~~~~",
"tsc": "tsc",
"__helpers": "----------- Helpers -----------",
"_all_own_ts_files": "find-glob -0 '**/*.{ts,tsx}' '!{dist,node_modules,scripts}/**' | xargs -0"
},
"dependencies": {
"lodash": "^4.13.1"
},
"devDependencies": {
"@types/lodash": "^4.14.30",
"@types/node": "^4.0.30",
"babel-preset-es2015-node-rollup": "^6.1.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"find-glob": "^2.1.0",
"fs-extra": "^1.0.0",
"mocha": "^3.0.2",
"node-typescript-compiler": "^1.0.1",
"np": "^2.6.0",
"rollup": "^0.40.1",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-uglify": "^1.0.1",
"sinon": "^1.17.4",
"ts-node": "^2.0.0",
"tslint": "^4.2.0",
"typescript": "^2",
"vorpal": "^1.11.2"
}
}