-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.32 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
{
"name": "slice",
"version": "1.0.0",
"description": "A JavaScript implementation of Python's extended slice syntax.",
"main": "dist/index.js",
"repository": "https://github.com/intoli/slice",
"author": "Intoli, LLC <[email protected]>",
"license": "BSD-2-Clause",
"private": false,
"scripts": {
"build": "NODE_ENV=production webpack",
"lint": "eslint src/",
"postversion": "git push && git push --tags",
"test": "NODE_ENV=testing mocha --exit --require babel-register",
"test:generated": "NODE_ENV=testing babel-node test/run-generated-tests.js"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-power-assert": "^2.0.0",
"babel-register": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"imports-loader": "^0.8.0",
"mocha": "^5.2.0",
"power-assert": "^1.5.0",
"source-map-support": "^0.5.6",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4"
}
}