-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "y-combinator-node",
"version": "1.2.1",
"description": "Y combinator for javascript",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node ./test",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
"clean-dist": "node ./bin/clean-dist.js",
"build": "npm run clean-dist && NODE_ENV=production npm run webpack-build",
"webpack-build": "./node_modules/.bin/webpack --progress -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andy2046/y-combinator-node.git"
},
"keywords": [
"Y",
"combinator",
"javascript"
],
"author": "AndyP (https://www.npmjs.com/~andy*()",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-runtime": "6.18.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"del": "2.2.2",
"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",
"eslint-watch": "3.1.0",
"uglifyjs-webpack-plugin": "1.2.3",
"webpack": "3.5.5"
},
"bugs": {
"url": "https://github.com/andy2046/y-combinator-node/issues"
},
"homepage": "https://github.com/andy2046/y-combinator-node#readme"
}