-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.18 KB
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": "actml",
"version": "0.33.0",
"description": "Like jsx but for your business logic",
"main": "./actml.production.js",
"scripts": {
"build-dev": "cp ./actml.js ./actml.dev.js && node ./scripts/replaceInFile.js ./actml.dev.js __DEV__ true",
"build-production": "cp ./actml.js ./actml.production.js && node ./scripts/replaceInFile.js ./actml.production.js __DEV__ false && uglifyjs ./actml.production.js -o ./actml.production.js --compress unused,dead_code --mangle",
"build": "browserify ./lib/index.js -o ./actml.js --standalone actml && yarn build-dev && yarn build-production && rm ./actml.js",
"test": "BABEL_ENV=development ./node_modules/.bin/jest \"(.*)\\.spec\\.js\"",
"test-watch": "BABEL_ENV=development ./node_modules/.bin/jest \"(.*)\\.spec\\.js\" --watch --verbose false",
"transpile": "rm -rf ./lib/* && ./node_modules/.bin/babel ./src --out-dir ./lib --ignore spec.js",
"dev": "./node_modules/.bin/babel ./src --out-dir ./lib --ignore spec.js --watch",
"release": "yarn test && yarn transpile && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krasimir/actml.git"
},
"keywords": [
"actml",
"jsx",
"react"
],
"author": "Krasimir Tsonev",
"license": "MIT",
"bugs": {
"url": "https://github.com/krasimir/actml/issues"
},
"homepage": "https://github.com/krasimir/actml#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.0.3",
"babel-jest": "23.4.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babelify": "8.0.0",
"browserify": "14.5.0",
"eslint": "4.18.2",
"eslint-plugin-react": "7.5.1",
"fsevents": "1.2.4",
"jest": "23.5.0",
"redux": "4.0.0",
"regenerator-runtime": "0.12.1",
"uglify-js": "^3.0.28"
},
"browserify": {
"transform": [
"babelify"
]
},
"jest": {
"setupTestFrameworkScriptFile": "./jest/index.js",
"verbose": false,
"globals": {
"__DEV__": true
}
},
"dependencies": {
"fast-deep-equal": "2.0.1"
}
}